summaryrefslogtreecommitdiff
path: root/sys/net/route.h
diff options
context:
space:
mode:
authorMartin Pieuchot <mpi@cvs.openbsd.org>2016-03-30 10:13:15 +0000
committerMartin Pieuchot <mpi@cvs.openbsd.org>2016-03-30 10:13:15 +0000
commitea35b2cb525379a007baaf70bd9ff83c3c64519c (patch)
treed624a11a6517f628fa5c1b2b95c52b95cfcd8b81 /sys/net/route.h
parentdf3210756b0daff1d1eb642ce3aa526c1bb532ef (diff)
Implement proxy ARP for ART based on mpath support.
Since mpath is not enabled in RAMDISK, proxy ARP won't work there either. ok bluhm@
Diffstat (limited to 'sys/net/route.h')
-rw-r--r--sys/net/route.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/net/route.h b/sys/net/route.h
index 15b76bfed3d..bef35438642 100644
--- a/sys/net/route.h
+++ b/sys/net/route.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: route.h,v 1.133 2016/03/26 21:56:04 mpi Exp $ */
+/* $OpenBSD: route.h,v 1.134 2016/03/30 10:13:14 mpi Exp $ */
/* $NetBSD: route.h,v 1.9 1996/02/13 22:00:49 christos Exp $ */
/*
@@ -136,6 +136,7 @@ struct rtentry {
#define RTF_BLACKHOLE 0x1000 /* just discard pkts (during updates) */
#define RTF_PROTO3 0x2000 /* protocol specific routing flag */
#define RTF_PROTO2 0x4000 /* protocol specific routing flag */
+#define RTF_ANNOUNCE RTF_PROTO2 /* announce L2 entry */
#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 */