diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2005-06-24 14:01:54 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2005-06-24 14:01:54 +0000 |
commit | 52108e084e567f7c1f73598843297d6cd2b7c966 (patch) | |
tree | 21414f3724809a29e67111c72432fb4116a5f3c1 /usr.sbin/bgpd/bgpd.h | |
parent | 118da2d99905916f3510262a50a1cd0887a7863e (diff) |
Do not automaticaly announce routes that have RTF_DYNAMIC set. These routes
are e.g. created by the PMTU code and are removed after some time.
OK henning@
Diffstat (limited to 'usr.sbin/bgpd/bgpd.h')
-rw-r--r-- | usr.sbin/bgpd/bgpd.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.sbin/bgpd/bgpd.h b/usr.sbin/bgpd/bgpd.h index aafad0280b1..be53391827d 100644 --- a/usr.sbin/bgpd/bgpd.h +++ b/usr.sbin/bgpd/bgpd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: bgpd.h,v 1.168 2005/06/13 21:16:18 henning Exp $ */ +/* $OpenBSD: bgpd.h,v 1.169 2005/06/24 14:01:52 claudio Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -71,9 +71,10 @@ #define F_NEXTHOP 0x0008 #define F_DOWN 0x0010 #define F_STATIC 0x0020 -#define F_LONGER 0x0040 +#define F_DYNAMIC 0x0040 #define F_REJECT 0x0080 #define F_BLACKHOLE 0x0100 +#define F_LONGER 0x0200 enum { PROC_MAIN, |