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

ParametersDescription
connHandleHTTP connection handle.
argsNumber of arguments.

Returns

None.

Remarks

None.

Example

else if(!memcmp(filename, "cookies.htm", 11))
{ 
    TCPIP_HTTP_CurrentConnectionHasArgsSet(connHandle, 1);
}