1.2.1.13.23 TCPIP_HTTP_NET_ConnectionHasArgsSet Function

C

void TCPIP_HTTP_NET_ConnectionHasArgsSet(
    TCPIP_HTTP_NET_CONN_HANDLE connHandle, 
    uint8_t args
);

Description

This 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_NET_ConnectionHasArgsSet(connHandle, 1);
}