|
FreeRTOS:
Secure Sockets
|
| Return to main page ↑ |
Receive data from a TCP socket.
The socket must have already been created using a call to SOCKETS_Socket() and connected to a remote socket using SOCKETS_Connect().
See the Berkeley Sockets API in wikipedia
| [in] | xSocket | The handle of the socket from which data is being received. |
| [out] | pvBuffer | The buffer into which the received data will be placed. |
| [in] | xBufferLength | The maximum number of bytes which can be received. pvBuffer must be at least xBufferLength bytes long. |
| [in] | ulFlags | Not currently used. Should be set to 0. |