summaryrefslogtreecommitdiff
path: root/sys/netinet/in_pcb.h
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2007-02-22 20:23:08 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2007-02-22 20:23:08 +0000
commitc1784f1dc2bdfd88f5845afe410ac318f2f896e4 (patch)
tree7e85091429da60fc59476c1f84b28c5e196f6728 /sys/netinet/in_pcb.h
parent0a077e25a9e8baf2ee8d934b83a1b3bd06a28a55 (diff)
Remove TCP ports 760 and 761 from DEFBADDYNAMICPORTS_TCP; they are
not used with Heimdal. Add UDP port 749 to DEFBADDYNAMICPORTS_UDP for consistency with DEFBADDYNAMICPORTS_TCP. We retain some Kerberos 4 ports for people running Heimdal in Kerberos 4 compat mode. OK deraadt@ beck@
Diffstat (limited to 'sys/netinet/in_pcb.h')
-rw-r--r--sys/netinet/in_pcb.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netinet/in_pcb.h b/sys/netinet/in_pcb.h
index a2501db3396..3f7d2deab79 100644
--- a/sys/netinet/in_pcb.h
+++ b/sys/netinet/in_pcb.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: in_pcb.h,v 1.58 2006/12/09 01:12:28 itojun Exp $ */
+/* $OpenBSD: in_pcb.h,v 1.59 2007/02/22 20:23:07 millert Exp $ */
/* $NetBSD: in_pcb.h,v 1.14 1996/02/13 23:42:00 christos Exp $ */
/*
@@ -225,8 +225,8 @@ struct inpcbtable {
#define DP_ISSET(m, p) ((m)[((p) - IPPORT_RESERVED/2) / DP_MAPBITS] & (1 << ((p) % DP_MAPBITS)))
/* default values for baddynamicports [see ip_init()] */
-#define DEFBADDYNAMICPORTS_TCP { 587, 749, 750, 751, 760, 761, 871, 0 }
-#define DEFBADDYNAMICPORTS_UDP { 623, 664, 750, 751, 0 }
+#define DEFBADDYNAMICPORTS_TCP { 587, 749, 750, 751, 871, 0 }
+#define DEFBADDYNAMICPORTS_UDP { 623, 664, 749, 750, 751, 0 }
struct baddynamicports {
u_int32_t tcp[DP_MAPSIZE];