Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: NNN50_CE_Test_UDP NNN50_linux_firmware NNN50_SoftAP_HelloWorld NNN50_BLEWIFISensor ... more
An asynchronous receive function, used to retrieve data from a TCP stream. More...
Functions | |
| NMI_API sint16 | recv (SOCKET sock, void *pvRecvBuf, uint16 u16BufLen, uint32 u32Timeoutmsec) |
Detailed Description
An asynchronous receive function, used to retrieve data from a TCP stream.
Before calling the recv function, a successful socket connection status must have been received through any of the two socket events [SOCKET_MSG_CONNECT] or [SOCKET_MSG_ACCEPT], from the socket callback. Hence, indicating that the socket is already connected to a remote host. The application receives the required data in response to this asynchronous call through the reception of the event SOCKET_MSG_RECV in the socket callback.
Receiving the SOCKET_MSG_RECV message in the callback with zero or negative buffer length indicates the following:
- SOCK_ERR_NO_ERROR : Socket connection closed
- SOCK_ERR_CONN_ABORTED : Socket connection aborted
- SOCK_ERR_TIMEOUT : Socket receive timed out The application code is expected to close the socket through the call to the close function upon the appearance of the above mentioned errors.
Function Documentation
- Parameters:
-
[in] sock Socket ID, must hold a non negative value. A negative value will return a socket error SOCK_ERR_INVALID_ARG. Indicating that an invalid argument is passed in. [in] pvRecvBuf Pointer to a buffer that will hold the received data. The buffer is used in the recv callback to deliver the received data to the caller. The buffer must be resident in memory (heap or global buffer). [in] u16BufLen The buffer size in bytes. [in] u32Timeoutmsec Timeout for the recv function in milli-seconds. If the value is set to ZERO, the timeout will be set to infinite (the recv function waits forever). If the timeout period is elapsed with no data received, the socket will get a timeout error.
- Precondition:
- The socket function must be called to allocate a TCP socket before passing the socket ID to the recv function.
- The socket in a connected state is expected to receive data through the socket interface.
- Returns:
- The function returns ZERO for successful operations and a negative value otherwise. The possible error values are:
- [SOCK_ERR_NO_ERROR](SOCK_ERR_NO_ERROR) Indicating that the operation was successful.
- [SOCK_ERR_INVALID_ARG](SOCK_ERR_INVALID_ARG) Indicating passing invalid arguments such as negative socket ID or NULL Recieve buffer.
- [SOCK_ERR_BUFFER_FULL](SOCK_ERR_BUFFER_FULL) Indicate socket receive failure.
Example
The example demonstrates a code snippet for the calling of the recv function in the socket callback upon notification of the accept or connect events, and the parsing of the received data when the SOCKET_MSG_RECV event is received.
switch(u8Msg)
{
case SOCKET_MSG_ACCEPT :
{
tstrSocketAcceptMsg *pstrAccept = (tstrSocketAcceptMsg*)pvMsg;
if(pstrAccept->sock >= 0)
{
recv (pstrAccept->sock ,gau8RxBuffer,sizeof(gau8RxBuffer),TEST_RECV_TIMEOUT);
}
else
{
M2M_ERR("accept\n");
}
}
break;
case SOCKET_MSG_RECV :
{
tstrSocketRecvMsg *pstrRx = (tstrSocketRecvMsg*)pvMsg;
if(pstrRx->s16BufferSize > 0)
{
recv (sock,gau8RxBuffer,sizeof(gau8RxBuffer),TEST_RECV_TIMEOUT);
}
else
{
printf("Socet recv Error: %d\n",pstrRx->s16BufferSize );
close(sock);
}
}
break;
default:
break;
}
}
Generated on Wed Jul 13 2022 16:32:38 by
1.7.2