diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2006-05-23 12:11:39 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2006-05-23 12:11:39 +0000 |
commit | 3430a613b0777f27be2c5d1b53731fd0410160b8 (patch) | |
tree | 828164865de4d5a5c696fdebabbbac3165958c2f /usr.sbin/bgpd/bgpd.h | |
parent | bd0a71a1145af0072b689da3178830cdf67539d7 (diff) |
allow bgpd to request a route refresh from a neighbor if that neighbor
announced route refresh capabilities
Diffstat (limited to 'usr.sbin/bgpd/bgpd.h')
-rw-r--r-- | usr.sbin/bgpd/bgpd.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/usr.sbin/bgpd/bgpd.h b/usr.sbin/bgpd/bgpd.h index 25aba786b08..b35de4629da 100644 --- a/usr.sbin/bgpd/bgpd.h +++ b/usr.sbin/bgpd/bgpd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: bgpd.h,v 1.199 2006/04/26 17:13:14 claudio Exp $ */ +/* $OpenBSD: bgpd.h,v 1.200 2006/05/23 12:11:38 henning Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -310,6 +310,7 @@ enum imsg_type { IMSG_CTL_NEIGHBOR_UP, IMSG_CTL_NEIGHBOR_DOWN, IMSG_CTL_NEIGHBOR_CLEAR, + IMSG_CTL_NEIGHBOR_RREFRESH, IMSG_CTL_KROUTE, IMSG_CTL_KROUTE6, IMSG_CTL_KROUTE_ADDR, @@ -344,7 +345,8 @@ struct imsg { enum ctl_results { CTL_RES_OK, CTL_RES_NOSUCHPEER, - CTL_RES_DENIED + CTL_RES_DENIED, + CTL_RES_NOCAP }; /* needed for session.h parse prototype */ |