TCPIP_HTTP_CurrentConnectionFileGet Function

C

SYS_FS_HANDLE TCPIP_HTTP_CurrentConnectionFileGet(
    HTTP_CONN_HANDLE connHandle
);

Description

This function returns the handle of the current HTTP connection file.

Preconditions

None.

Parameters

ParametersDescription
connHandleHTTP connection handle.

Returns

Handle to File System file belonging to the connection defined by connHandle.

Remarks

None.

Example

uint8_t myBuff[20];

// Get the file handle and read from that file
SYS_FS_FileRead(myBuff, sizeof(myBuff), TCPIP_HTTP_CurrentConnectionFileGet(connHandle));