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.28.2 retrieving revision 1.90 diff -u -p -r1.89.28.2 -r1.90 --- src/sys/sys/socket.h 2008/09/18 04:37:05 1.89.28.2 +++ src/sys/sys/socket.h 2008/06/15 21:14:06 1.90 @@ -1,4 +1,4 @@ -/* $NetBSD: socket.h,v 1.89.28.2 2008/09/18 04:37:05 wrstuden 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 */ /* @@ -149,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. */