diff options
Diffstat (limited to 'StdLib/BsdSocketLib/recv.c')
-rw-r--r-- | StdLib/BsdSocketLib/recv.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/StdLib/BsdSocketLib/recv.c b/StdLib/BsdSocketLib/recv.c index 735e1dbddd..91f07cb08a 100644 --- a/StdLib/BsdSocketLib/recv.c +++ b/StdLib/BsdSocketLib/recv.c @@ -26,12 +26,12 @@ @param [in] s Socket file descriptor returned from ::socket.
@param [in] buffer Address of a buffer to receive the data.
-
+
@param [in] length Length of the buffer in bytes.
@param [in] flags Message control flags
- @returns ::recv returns the number of valid bytes in the buffer,
+ @return ::recv returns the number of valid bytes in the buffer,
zero if no data was received, and -1 when an error occurs.
In the case of an error, errno contains more details.
@@ -45,7 +45,7 @@ recv ( )
{
ssize_t BytesRead;
-
+
//
// Receive the data from the remote system
//
|