recv.2: Improve text describing recvfrom() call that is equivalent to recv()

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Michael Kerrisk 2014-02-11 10:57:41 +01:00
parent 00b5fccba3
commit bba8774703
1 changed files with 4 additions and 6 deletions

View File

@ -289,12 +289,10 @@ The
call is normally used only on a
.I connected
socket (see
.BR connect (2))
and is identical to
.BR recvfrom ()
with a NULL
.I src_addr
argument.
.BR connect (2)).
It is equivalent to the call:
recvfrom(fd, buf, len, flags, NULL, 0));
.\"
.SS recvmsg()
The