diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2004-01-06 23:14:59 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2004-01-06 23:14:59 +0000 |
commit | 46b167ceff7922791726347f290e24c26eb7734d (patch) | |
tree | fe9ab14831851b3efbd290b6f79fe91a74b93f71 /usr.sbin/bgpd/session.h | |
parent | 0d8de2e0bc196a346ee4795c990c8868daa8df5b (diff) |
two new imsg types, IMSG_CTL_NEIGHBOR_UP and _DOWN, on their receival on the
control socket the given neighbor session is sent a START / STOP signal.
ok claudio@
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 7d283eb9aef..668e46d6d7a 100644 --- a/usr.sbin/bgpd/session.h +++ b/usr.sbin/bgpd/session.h @@ -1,4 +1,4 @@ -/* $OpenBSD: session.h,v 1.15 2004/01/06 19:21:22 henning Exp $ */ +/* $OpenBSD: session.h,v 1.16 2004/01/06 23:14:58 henning Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -155,6 +155,7 @@ struct peer *peers; void session_socket_blockmode(int, enum blockmodes); int session_main(struct bgpd_config *, struct peer *, int[2], int[2]); +void bgp_fsm(struct peer *, enum session_events); struct peer *getpeerbyip(in_addr_t); int imsg_compose_parent(int, u_int32_t, void *, u_int16_t); |