diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2004-11-18 17:17:57 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2004-11-18 17:17:57 +0000 |
commit | 7b56d6939a3b7f3fb5e900efaf365f2092e715a9 (patch) | |
tree | 5441993f48402f2f7b2eda6c23657429c604d96c /usr.sbin/bgpd/bgpd.h | |
parent | 2af21da64dff5c7b4eb730e295f3e81ae97667d4 (diff) |
embed two struct capabilities, one for the capas announced by the peer and
one for the capas we announced him, into the session_up imsg to the RDE
after brainstorming with claudio
Diffstat (limited to 'usr.sbin/bgpd/bgpd.h')
-rw-r--r-- | usr.sbin/bgpd/bgpd.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.sbin/bgpd/bgpd.h b/usr.sbin/bgpd/bgpd.h index bb55a21e5fb..738706573a8 100644 --- a/usr.sbin/bgpd/bgpd.h +++ b/usr.sbin/bgpd/bgpd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: bgpd.h,v 1.148 2004/11/18 17:07:38 henning Exp $ */ +/* $OpenBSD: bgpd.h,v 1.149 2004/11/18 17:17:56 henning Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -404,6 +404,8 @@ struct session_up { struct bgpd_addr local_addr; struct bgpd_addr remote_addr; struct peer_config conf; + struct capabilities capa_announced; + struct capabilities capa_received; }; struct pftable_msg { |