diff options
author | Mike Belopuhov <mikeb@cvs.openbsd.org> | 2011-02-24 17:20:09 +0000 |
---|---|---|
committer | Mike Belopuhov <mikeb@cvs.openbsd.org> | 2011-02-24 17:20:09 +0000 |
commit | f97ebc7a938c5139716488c749ce85e67b311b9f (patch) | |
tree | f1d704b0f438ea31cfe8c4233e958a13858ca9cc | |
parent | 1416012c1190a0cbe04411ce3471fba27d3b4716 (diff) |
SOCK_SEQPACKET is only valid for the AF_BLUETOOTH now, and
SOCK_RDM is a dead SysV compatibility option that is not
described anywhere in the man page so don't reference it.
ok claudio
-rw-r--r-- | lib/libc/sys/socket.2 | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/libc/sys/socket.2 b/lib/libc/sys/socket.2 index e9e4f4dfc7b..bac9951ad5f 100644 --- a/lib/libc/sys/socket.2 +++ b/lib/libc/sys/socket.2 @@ -1,4 +1,4 @@ -.\" $OpenBSD: socket.2,v 1.31 2008/11/26 22:40:21 mk Exp $ +.\" $OpenBSD: socket.2,v 1.32 2011/02/24 17:20:08 mikeb Exp $ .\" $NetBSD: socket.2,v 1.5 1995/02/27 12:37:53 cgd Exp $ .\" .\" Copyright (c) 1983, 1991, 1993 @@ -30,7 +30,7 @@ .\" .\" @(#)socket.2 8.1 (Berkeley) 6/4/93 .\" -.Dd $Mdocdate: November 26 2008 $ +.Dd $Mdocdate: February 24 2011 $ .Dt SOCKET 2 .Os .Sh NAME @@ -77,7 +77,6 @@ Currently defined types are: .It SOCK_DGRAM .It SOCK_RAW .It SOCK_SEQPACKET -.It SOCK_RDM .El .Pp A @@ -98,7 +97,7 @@ of fixed maximum length; a consumer may be required to read an entire packet with each read system call. This facility is protocol specific, and presently implemented only for -.Dv PF_NS . +.Dv AF_BLUETOOTH . .Dv SOCK_RAW sockets provide access to internal network protocols and interfaces, and are available only to the superuser. |