summaryrefslogtreecommitdiff
path: root/sys/net
diff options
context:
space:
mode:
authorDavid Gwynne <dlg@cvs.openbsd.org>2012-03-17 10:16:42 +0000
committerDavid Gwynne <dlg@cvs.openbsd.org>2012-03-17 10:16:42 +0000
commitabbbd96eeae1e4e731a3d7d30f4212f0e1f1eca8 (patch)
tree7276ac7a1877f621dc6719a064dd5da6392705b4 /sys/net
parenta4159ad4f1802ad611f450875f427c0213a0c4dc (diff)
remove IP_JUMBO, SO_JUMBO, and RTF_JUMBO.
no objection from mcbride@ krw@ markus@ deraadt@
Diffstat (limited to 'sys/net')
-rw-r--r--sys/net/route.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/net/route.h b/sys/net/route.h
index 2095a373d2b..de2ea27be6a 100644
--- a/sys/net/route.h
+++ b/sys/net/route.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: route.h,v 1.75 2010/10/28 17:18:35 claudio Exp $ */
+/* $OpenBSD: route.h,v 1.76 2012/03/17 10:16:41 dlg Exp $ */
/* $NetBSD: route.h,v 1.9 1996/02/13 22:00:49 christos Exp $ */
/*
@@ -144,12 +144,11 @@ struct rtentry {
#define RTF_PROTO1 0x8000 /* protocol specific routing flag */
#define RTF_CLONED 0x10000 /* this is a cloned route */
#define RTF_MPATH 0x40000 /* multipath route or operation */
-#define RTF_JUMBO 0x80000 /* try to use jumbo frames */
#define RTF_MPLS 0x100000 /* MPLS additional infos */
/* mask of RTF flags that are allowed to be modified by RTM_CHANGE */
#define RTF_FMASK \
- (RTF_JUMBO | RTF_PROTO1 | RTF_PROTO2 | RTF_PROTO3 | RTF_BLACKHOLE | \
+ (RTF_PROTO1 | RTF_PROTO2 | RTF_PROTO3 | RTF_BLACKHOLE | \
RTF_REJECT | RTF_STATIC)
#ifndef _KERNEL