#include <lwip/httpd/httpd.h>
Public Attributes | |
bool | in_use |
tcHttpd * | httpd |
int | socket |
struct sockaddr_in | client_saddr |
void * | user1 |
tsHttpReq | req |
int | pos |
char | method_buff [256] |
char | line_buff [256] |
tsHtmlBuff * | html_buff |
This structure specifies a httpd client connection. Each connection will have a unique tsHttpConn structure to define it. A pointer to the connection structure is passed in most functions in the tcHttpd class.
bool tsHttpConn::in_use |
This field will be set to true if the connection is in use.
int tsHttpConn::socket |
struct sockaddr_in tsHttpConn::client_saddr |
The IP address for the client using this connection.
void* tsHttpConn::user1 |
Application provided parameter. The web server does not use this parameter except to pass back to the application. Typically this will be used to reference back to an application class or structure.
tsHttpReq tsHttpConn::req |
Information about the HTTP request made to this connection.
int tsHttpConn::pos |
char tsHttpConn::method_buff[256] |
char tsHttpConn::line_buff[256] |
tsHtmlBuff* tsHttpConn::html_buff |