summaryrefslogtreecommitdiff
path: root/usr.sbin/bgpd/bgpd.h
diff options
context:
space:
mode:
authorClaudio Jeker <claudio@cvs.openbsd.org>2004-05-21 11:48:57 +0000
committerClaudio Jeker <claudio@cvs.openbsd.org>2004-05-21 11:48:57 +0000
commit2e37efc589c0992b17faac7080ceda911771b752 (patch)
tree63c1c99791d1e7b60f080a5d6ff06903e3918f08 /usr.sbin/bgpd/bgpd.h
parentd4c14ca08570aece7248cfd6c54324ba9ab9c027 (diff)
Add support for dynamic announcements. Usefule to annouce temporary
blackhole routes or to make network announcements dependent on a external state (e.g. for carp setups) OK henning@
Diffstat (limited to 'usr.sbin/bgpd/bgpd.h')
-rw-r--r--usr.sbin/bgpd/bgpd.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/usr.sbin/bgpd/bgpd.h b/usr.sbin/bgpd/bgpd.h
index d8f54b081fe..ba5d5efac8f 100644
--- a/usr.sbin/bgpd/bgpd.h
+++ b/usr.sbin/bgpd/bgpd.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: bgpd.h,v 1.123 2004/05/17 12:39:32 djm Exp $ */
+/* $OpenBSD: bgpd.h,v 1.124 2004/05/21 11:48:56 claudio Exp $ */
/*
* Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org>
@@ -235,7 +235,6 @@ enum imsg_type {
IMSG_NONE,
IMSG_RECONF_CONF,
IMSG_RECONF_PEER,
- IMSG_RECONF_NETWORK,
IMSG_RECONF_FILTER,
IMSG_RECONF_DONE,
IMSG_UPDATE,
@@ -253,6 +252,9 @@ enum imsg_type {
IMSG_PFTABLE_ADD,
IMSG_PFTABLE_REMOVE,
IMSG_PFTABLE_COMMIT,
+ IMSG_NETWORK_ADD,
+ IMSG_NETWORK_REMOVE,
+ IMSG_NETWORK_FLUSH,
IMSG_CTL_SHOW_NEIGHBOR,
IMSG_CTL_END,
IMSG_CTL_RELOAD,
@@ -267,6 +269,7 @@ enum imsg_type {
IMSG_CTL_SHOW_RIB,
IMSG_CTL_SHOW_RIB_AS,
IMSG_CTL_SHOW_RIB_PREFIX,
+ IMSG_CTL_SHOW_NETWORK,
IMSG_REFRESH
};