TCPIP_HTTP_NET_ConnectionHandleGet Function

C

TCPIP_HTTP_NET_CONN_HANDLE TCPIP_HTTP_NET_ConnectionHandleGet(
    int connIx
);

Description

This function will return the connection handle of the requested HTTP connection index.

Preconditions

None.

Parameters

ParametersDescription
connIxThe HTTP connection ix.

Returns

  • A valid connection handle if the connection index is valid

  • 0 if there is no such connection.

Remarks

None.

Example

TCPIP_HTTP_NET_CONN_HANDLE connHandle;

connHandle = TCPIP_HTTP_NET_ConnectionHandleGet(0);