Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/sys/sys/socket.h,v retrieving revision 1.89.20.3 retrieving revision 1.90 diff -u -p -r1.89.20.3 -r1.90 --- src/sys/sys/socket.h 2009/01/17 13:29:41 1.89.20.3 +++ src/sys/sys/socket.h 2008/06/15 21:14:06 1.90 @@ -1,4 +1,4 @@ -/* $NetBSD: socket.h,v 1.89.20.3 2009/01/17 13:29:41 mjf Exp $ */ +/* $NetBSD: socket.h,v 1.90 2008/06/15 21:14:06 christos Exp $ */ /* * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. @@ -121,7 +121,6 @@ typedef _BSD_SSIZE_T_ ssize_t; #define SO_OOBINLINE 0x0100 /* leave received OOB data in line */ #define SO_REUSEPORT 0x0200 /* allow local address & port reuse */ #define SO_TIMESTAMP 0x0400 /* timestamp received dgram traffic */ -#define SO_ACCEPTFILTER 0x1000 /* there is an accept filter */ /* @@ -131,8 +130,8 @@ typedef _BSD_SSIZE_T_ ssize_t; #define SO_RCVBUF 0x1002 /* receive buffer size */ #define SO_SNDLOWAT 0x1003 /* send low-water mark */ #define SO_RCVLOWAT 0x1004 /* receive low-water mark */ -/* SO_OSNDTIMEO 0x1005 */ -/* SO_ORCVTIMEO 0x1006 */ +#define SO_SNDTIMEO 0x1005 /* send timeout */ +#define SO_RCVTIMEO 0x1006 /* receive timeout */ #define SO_ERROR 0x1007 /* get error status and clear */ #define SO_TYPE 0x1008 /* get socket type */ #define SO_OVERFLOWED 0x1009 /* datagrams: return packets dropped */ @@ -141,8 +140,6 @@ typedef _BSD_SSIZE_T_ ssize_t; * kernel removes header and supplies * payload */ -#define SO_SNDTIMEO 0x100b /* send timeout */ -#define SO_RCVTIMEO 0x100c /* receive timeout */ /* * Structure used for manipulating linger option. */ @@ -151,11 +148,6 @@ struct linger { int l_linger; /* linger time in seconds */ }; -struct accept_filter_arg { - char af_name[16]; - char af_arg[256-16]; -}; - /* * Level number for (get/set)sockopt() to apply to socket itself. */ @@ -431,17 +423,15 @@ struct kinfo_pcb { */ #define NET_RT_DUMP 1 /* dump; may limit to a.f. */ #define NET_RT_FLAGS 2 /* by flags, e.g. RESOLVING */ -#define NET_RT_OOIFLIST 3 /* old NET_RT_IFLIST (pre 1.5) */ -#define NET_RT_OIFLIST 4 /* survey interface list */ -#define NET_RT_IFLIST 5 -#define NET_RT_MAXID 6 +#define NET_RT_OIFLIST 3 /* old NET_RT_IFLIST (pre 1.5) */ +#define NET_RT_IFLIST 4 /* survey interface list */ +#define NET_RT_MAXID 5 #define CTL_NET_RT_NAMES { \ { 0, 0 }, \ { "dump", CTLTYPE_STRUCT }, \ { "flags", CTLTYPE_STRUCT }, \ { 0, 0 }, \ - { 0, 0 }, \ { "iflist", CTLTYPE_STRUCT }, \ } #endif /* _NETBSD_SOURCE */