summaryrefslogtreecommitdiff
path: root/usr.sbin/bgpd
diff options
context:
space:
mode:
authorClaudio Jeker <claudio@cvs.openbsd.org>2022-07-28 10:41:19 +0000
committerClaudio Jeker <claudio@cvs.openbsd.org>2022-07-28 10:41:19 +0000
commit53a7a1473c00704c766b232f25cf9b8064ab19ce (patch)
tree0a22197db6af7994ca99ab9a241879c2b56dbab5 /usr.sbin/bgpd
parent2c4aab275fc4967ce456e62199ccbcb86372ef56 (diff)
Remove F_DOWN, it is no longer used and reshuffle the other flags a bit
to group them a bit better. OK tb@
Diffstat (limited to 'usr.sbin/bgpd')
-rw-r--r--usr.sbin/bgpd/bgpd.h13
1 files changed, 6 insertions, 7 deletions
diff --git a/usr.sbin/bgpd/bgpd.h b/usr.sbin/bgpd/bgpd.h
index 67ea2987ea6..6a8013e6695 100644
--- a/usr.sbin/bgpd/bgpd.h
+++ b/usr.sbin/bgpd/bgpd.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: bgpd.h,v 1.446 2022/07/27 17:23:17 claudio Exp $ */
+/* $OpenBSD: bgpd.h,v 1.447 2022/07/28 10:41:18 claudio Exp $ */
/*
* Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org>
@@ -76,14 +76,13 @@
#define F_BGPD 0x0001
#define F_BGPD_INSERTED 0x0002
#define F_CONNECTED 0x0004
-#define F_NEXTHOP 0x0008
-#define F_DOWN 0x0010
-#define F_STATIC 0x0020
-#define F_REJECT 0x0080
-#define F_BLACKHOLE 0x0100
+#define F_STATIC 0x0008
+#define F_NEXTHOP 0x0010
+#define F_REJECT 0x0020
+#define F_BLACKHOLE 0x0040
+#define F_MPLS 0x0080
#define F_LONGER 0x0200
#define F_SHORTER 0x0400
-#define F_MPLS 0x0800
#define F_CTL_DETAIL 0x1000 /* only set on requests */
#define F_CTL_ADJ_IN 0x2000 /* only set on requests */
#define F_CTL_ADJ_OUT 0x4000 /* only set on requests */