diff options
| author | Felix Johnson <fjohnson@felix-johnson.com> | 2025-02-13 03:40:59 +0000 |
|---|---|---|
| committer | Alexander Ziaee <ziaee@FreeBSD.org> | 2025-02-13 03:54:14 +0000 |
| commit | 571df2c64a3c1af1fe011303ec08e391e887ecbc (patch) | |
| tree | 29ecb06a8e3a0a7d428fad9298b306025a7e7501 /lib/libsys | |
| parent | 6156da866e7db8dab36b96ac4f4e38f75e41200d (diff) | |
Diffstat (limited to 'lib/libsys')
| -rw-r--r-- | lib/libsys/recv.2 | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/lib/libsys/recv.2 b/lib/libsys/recv.2 index 08df62af3d1c..9dc1f3cc84ca 100644 --- a/lib/libsys/recv.2 +++ b/lib/libsys/recv.2 @@ -316,12 +316,19 @@ On data reception the .Fa msg_len field is updated to the length of the received message. .Sh RETURN VALUES -These calls except -.Fn recvmmsg +On successful completion, +.Fn recv , +.Fn recvfrom , +and +.Fn recvmsg return the number of bytes received. .Fn recvmmsg returns the number of messages received. -A value of -1 is returned if an error occurred. +If no messages are available to be received and the peer has +performed an orderly shutdown, 0 is returned. +Otherwise, -1 is returned and +.Va errno +is set to indicate the error. .Sh ERRORS The calls fail if: .Bl -tag -width Er |
