summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--etc/protocols4
-rw-r--r--sys/netinet/in.h6
-rw-r--r--usr.sbin/tcpdump/print-ip.c6
3 files changed, 8 insertions, 8 deletions
diff --git a/etc/protocols b/etc/protocols
index 92b3c24bceb..cdbc67d0345 100644
--- a/etc/protocols
+++ b/etc/protocols
@@ -1,7 +1,7 @@
#
# Internet (IP) protocols
#
-# $OpenBSD: protocols,v 1.19 2003/12/15 07:15:44 mcbride Exp $
+# $OpenBSD: protocols,v 1.20 2003/12/17 21:36:17 mcbride Exp $
#
# Updated based on RFC 1340, Assigned Numbers (July 1992).
# See also http://www.iana.org/assignments/protocol-numbers
@@ -141,5 +141,5 @@ pipe 131 PIPE # Private IP Encapsulation within IP
sctp 132 SCTP # Stream Control Transmission Protocol
fc 133 FC # Fibre Channel
rsvp-e2e-ignore 134 RSVP-E2E-IGNORE
-pfsync 136 PFSYNC # PF Synchronization
+pfsync 240 PFSYNC # PF Synchronization
reserved 255 Reserved #
diff --git a/sys/netinet/in.h b/sys/netinet/in.h
index 5d09134af38..e7cc74a75ba 100644
--- a/sys/netinet/in.h
+++ b/sys/netinet/in.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: in.h,v 1.59 2003/12/15 07:11:30 mcbride Exp $ */
+/* $OpenBSD: in.h,v 1.60 2003/12/17 21:36:17 mcbride Exp $ */
/* $NetBSD: in.h,v 1.20 1996/02/13 23:41:47 christos Exp $ */
/*
@@ -73,7 +73,7 @@
#define IPPROTO_PIM 103 /* Protocol indep. multicast */
#define IPPROTO_IPCOMP 108 /* IP Payload Comp. Protocol */
#define IPPROTO_CARP 112 /* CARP */
-#define IPPROTO_PFSYNC 136 /* PFSYNC */
+#define IPPROTO_PFSYNC 240 /* PFSYNC */
#define IPPROTO_RAW 255 /* raw IP packet */
#define IPPROTO_MAX 256
@@ -201,7 +201,7 @@ struct in_addr {
#define INADDR_ALLHOSTS_GROUP __IPADDR(0xe0000001) /* 224.0.0.1 */
#define INADDR_ALLROUTERS_GROUP __IPADDR(0xe0000002) /* 224.0.0.2 */
#define INADDR_CARP_GROUP __IPADDR(0xe0000012) /* 224.0.0.18 */
-#define INADDR_PFSYNC_GROUP __IPADDR(0xe0000088) /* 224.0.0.136 */
+#define INADDR_PFSYNC_GROUP __IPADDR(0xe00000f0) /* 224.0.0.240 */
#define INADDR_MAX_LOCAL_GROUP __IPADDR(0xe00000ff) /* 224.0.0.255 */
#define IN_LOOPBACKNET 127 /* official! */
diff --git a/usr.sbin/tcpdump/print-ip.c b/usr.sbin/tcpdump/print-ip.c
index 62ab0d1dbc7..5541bea1a93 100644
--- a/usr.sbin/tcpdump/print-ip.c
+++ b/usr.sbin/tcpdump/print-ip.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: print-ip.c,v 1.20 2003/12/15 07:11:31 mcbride Exp $ */
+/* $OpenBSD: print-ip.c,v 1.21 2003/12/17 21:36:17 mcbride Exp $ */
/*
* Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997
@@ -23,7 +23,7 @@
#ifndef lint
static const char rcsid[] =
- "@(#) $Header: /cvs/OpenBSD/src/usr.sbin/tcpdump/print-ip.c,v 1.20 2003/12/15 07:11:31 mcbride Exp $ (LBL)";
+ "@(#) $Header: /cvs/OpenBSD/src/usr.sbin/tcpdump/print-ip.c,v 1.21 2003/12/17 21:36:17 mcbride Exp $ (LBL)";
#endif
#include <sys/param.h>
@@ -558,7 +558,7 @@ ip_print(register const u_char *bp, register u_int length)
break;
#ifndef IPPROTO_PFSYNC
-#define IPPROTO_PFSYNC 136
+#define IPPROTO_PFSYNC 240
#endif
case IPPROTO_PFSYNC:
if (vflag)