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/session.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/session.h')
-rw-r--r-- | usr.sbin/bgpd/session.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/bgpd/session.h b/usr.sbin/bgpd/session.h index 0322a0ffcb4..6f9673bfbf0 100644 --- a/usr.sbin/bgpd/session.h +++ b/usr.sbin/bgpd/session.h @@ -1,4 +1,4 @@ -/* $OpenBSD: session.h,v 1.81 2006/01/24 10:03:44 henning Exp $ */ +/* $OpenBSD: session.h,v 1.82 2006/05/23 12:11:38 henning Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -189,6 +189,7 @@ pid_t session_main(struct bgpd_config *, struct peer *, struct network_head *, struct filter_head *, struct mrt_head *, int[2], int[2], int[2]); void bgp_fsm(struct peer *, enum session_events); +int session_neighbor_rrefresh(struct peer *p); struct peer *getpeerbyaddr(struct bgpd_addr *); struct peer *getpeerbydesc(const char *); int imsg_compose_parent(int, pid_t, void *, u_int16_t); |