diff options
author | roam <roam@FreeBSD.org> | 2007-04-27 10:28:30 +0000 |
---|---|---|
committer | roam <roam@FreeBSD.org> | 2007-04-27 10:28:30 +0000 |
commit | b76036be69c70a1bd1c345d763858f8b8b64b06e (patch) | |
tree | 1e2775772c801dc73d17090bd954e3bd5308e96b /lib | |
parent | 377294ae027bc3b9a16a068838eb2aa9459c938a (diff) | |
download | FreeBSD-src-b76036be69c70a1bd1c345d763858f8b8b64b06e.zip FreeBSD-src-b76036be69c70a1bd1c345d763858f8b8b64b06e.tar.gz |
Remove the MSG_PEEK flag from the documentation of the send(2) syscall -
it is only relevant to receiving data from sockets, not to sending.
PR: 109667
Submitted by: Jari Kirma <kirma@cs.hut.fi>
Approved by: wollman
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/sys/send.2 | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/libc/sys/send.2 b/lib/libc/sys/send.2 index 0038552..6a61426 100644 --- a/lib/libc/sys/send.2 +++ b/lib/libc/sys/send.2 @@ -100,7 +100,6 @@ The argument may include one or more of the following: .Bd -literal #define MSG_OOB 0x00001 /* process out-of-band data */ -#define MSG_PEEK 0x00002 /* peek at incoming message */ #define MSG_DONTROUTE 0x00004 /* bypass routing, use direct interface */ #define MSG_EOR 0x00008 /* data completes record */ #define MSG_EOF 0x00100 /* data completes transaction */ |