represents the http request and includes methods to access the request header and request body.
More...
Detailed Description
represents the http request and includes methods to access the request header and request body.
Typedef Documentation
Function Documentation
M_INLINE const char* HTTP_servlet_find_header |
( |
HTTP_servlet_request * |
req, |
|
|
const char * |
header_name |
|
) |
| |
Definition at line 270 of file webby.h.
{
return HTTP_MESSAGE_find_header( &req->request->base, header_name );
}
M_INLINE STRINGPAIR* HTTP_servlet_first_header |
( |
HTTP_servlet_request * |
req, |
|
|
DLISTUNR_position * |
pos |
|
) |
| |
Definition at line 274 of file webby.h.
{
return HTTP_MESSAGE_first_header( &req->request->base, pos );
}
M_INLINE STRINGPAIR* HTTP_servlet_next_header |
( |
HTTP_servlet_request * |
req, |
|
|
DLISTUNR_position * |
pos |
|
) |
| |
Definition at line 278 of file webby.h.
{
return HTTP_MESSAGE_next_header( &req->request->base, pos );
}