Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-1-6]: src/sys/netinet Pull up revision 1.60 (requested by itojun ...



details:   https://anonhg.NetBSD.org/src/rev/bcc0000f5603
branches:  netbsd-1-6
changeset: 530810:bcc0000f5603
user:      tron <tron%NetBSD.org@localhost>
date:      Sat Oct 04 09:44:12 2003 +0000

description:
Pull up revision 1.60 (requested by itojun in ticket #1409):
enforce ipsec policy on raw wildcard.

diffstat:

 sys/netinet/in_proto.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 46931520decd -r bcc0000f5603 sys/netinet/in_proto.c
--- a/sys/netinet/in_proto.c    Sat Oct 04 09:44:06 2003 +0000
+++ b/sys/netinet/in_proto.c    Sat Oct 04 09:44:12 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: in_proto.c,v 1.55 2002/03/04 13:24:12 sommerfeld Exp $ */
+/*     $NetBSD: in_proto.c,v 1.55.8.1 2003/10/04 09:44:12 tron Exp $   */
 
 /*
  * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
@@ -65,7 +65,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: in_proto.c,v 1.55 2002/03/04 13:24:12 sommerfeld Exp $");
+__KERNEL_RCSID(0, "$NetBSD: in_proto.c,v 1.55.8.1 2003/10/04 09:44:12 tron Exp $");
 
 #include "opt_mrouting.h"
 #include "opt_eon.h"                   /* ISO CLNL over IP */
@@ -247,7 +247,7 @@
 },
 #endif /* NSIP */
 /* raw wildcard */
-{ SOCK_RAW,    &inetdomain,    0,              PR_ATOMIC|PR_ADDR,
+{ SOCK_RAW,    &inetdomain,    0,              PR_ATOMIC|PR_ADDR|PR_LASTHDR,
   rip_input,   rip_output,     rip_ctlinput,   rip_ctloutput,
   rip_usrreq,
   rip_init,    0,              0,              0,



Home | Main Index | Thread Index | Old Index