svn commit: r186750 - head/sys/netinet6

Robert Watson rwatson at FreeBSD.org
Sun Jan 4 13:13:52 PST 2009


Author: rwatson
Date: Sun Jan  4 21:13:51 2009
New Revision: 186750
URL: http://svn.freebsd.org/changeset/base/186750

Log:
  struct ip6protosw is a copy of struct protosw, so remove pr_usrreq there
  to reflect removal from struct protosw.
  
  Spotted by:	ed

Modified:
  head/sys/netinet6/ip6protosw.h

Modified: head/sys/netinet6/ip6protosw.h
==============================================================================
--- head/sys/netinet6/ip6protosw.h	Sun Jan  4 20:59:23 2009	(r186749)
+++ head/sys/netinet6/ip6protosw.h	Sun Jan  4 21:13:51 2009	(r186750)
@@ -126,11 +126,6 @@ struct ip6protosw {
 	int	(*pr_ctloutput)		/* control output (from above) */
 			__P((struct socket *, struct sockopt *));
 
-/* user-protocol hook */
-	int	(*pr_usrreq)		/* user request: see list below */
-			__P((struct socket *, int, struct mbuf *,
-			     struct mbuf *, struct mbuf *, struct thread *));
-
 /* utility hooks */
 	void	(*pr_init)		/* initialization hook */
 			__P((void));


More information about the svn-src-all mailing list