TCPIP_HTTP_CurrentConnectionHasArgsSet Function
C
void TCPIP_HTTP_CurrentConnectionHasArgsSet(
HTTP_CONN_HANDLE connHandle,
uint8_t args
);
Description
The function sets the value of the "cookies or get arguments" that are present.
Preconditions
None.
Parameters
Parameters | Description |
---|---|
connHandle | HTTP connection handle. |
args | Number of arguments. |
Returns
None.
Remarks
None.
Example
else if(!memcmp(filename, "cookies.htm", 11))
{
TCPIP_HTTP_CurrentConnectionHasArgsSet(connHandle, 1);
}