#include <HTTP.h>
Data Fields | |
char | hostname [256] |
int | ip |
int | port |
int | NeedSSL |
char | url [512] |
PHTTP_DATA | request |
PHTTP_DATA | response |
char * | server |
unsigned int | status |
unsigned int | challenge |
Definition at line 112 of file HTTP.h.
char _request::hostname[256] |
int _request::ip |
int _request::port |
remote HTTP port. This value is obtained from the InitHTTPConnectionHandle()
char _request::url[512] |
path to the file or directory requested
Definition at line 122 of file HTTP.h.
Referenced by SendHttpRequest().
Information related to the HTTP Request. This struct contains both client headers and postdata
Definition at line 124 of file HTTP.h.
Referenced by FreeRequest().
Information related to the HTTP response. This struct contains both server headers and data
Definition at line 126 of file HTTP.h.
Referenced by FreeRequest(), and SendHttpRequest().
char* _request::server |
pointer to a string that contains the server banner from the remote http server
Definition at line 128 of file HTTP.h.
Referenced by FreeRequest().
unsigned int _request::status |
status code returned by the HTTP server. Example: "200", for an STATUS OK response.
Definition at line 130 of file HTTP.h.
Referenced by SendHttpRequest().
unsigned int _request::challenge |