diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2022-07-22 17:26:59 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2022-07-22 17:26:59 +0000 |
commit | be16e4e9292d4af770db9010d1876934399e5a90 (patch) | |
tree | 118aa814095f5acd953b5fbaccdb6088d1f24073 /usr.sbin/bgpd/bgpd.h | |
parent | e327ef05e2493443c7c446a7c66dd22f17188b17 (diff) |
Revert previous commit. The RTP_MINE checks on struct kroute_full are
not correct because kr_tofull() replaces RTP_MINE with the real priority.
Noticed because of incorrect nexthop selection.
Diffstat (limited to 'usr.sbin/bgpd/bgpd.h')
-rw-r--r-- | usr.sbin/bgpd/bgpd.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/usr.sbin/bgpd/bgpd.h b/usr.sbin/bgpd/bgpd.h index e1f34883a41..ef75e651206 100644 --- a/usr.sbin/bgpd/bgpd.h +++ b/usr.sbin/bgpd/bgpd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: bgpd.h,v 1.443 2022/07/22 11:17:48 claudio Exp $ */ +/* $OpenBSD: bgpd.h,v 1.444 2022/07/22 17:26:58 claudio Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -54,8 +54,6 @@ #define MAX_RTSOCK_BUF (2 * 1024 * 1024) #define MAX_COMM_MATCH 3 -#define RTP_MINE 0xff /* internal route priority */ - #define BGPD_OPT_VERBOSE 0x0001 #define BGPD_OPT_VERBOSE2 0x0002 #define BGPD_OPT_NOACTION 0x0004 @@ -76,11 +74,12 @@ #define SOCKET_NAME "/var/run/bgpd.sock" #define F_BGPD 0x0001 -#define F_BGPD_INSERTED 0x0002 +#define F_KERNEL 0x0002 #define F_CONNECTED 0x0004 #define F_NEXTHOP 0x0008 #define F_DOWN 0x0010 #define F_STATIC 0x0020 +#define F_BGPD_INSERTED 0x0040 #define F_REJECT 0x0080 #define F_BLACKHOLE 0x0100 #define F_LONGER 0x0200 |