diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2004-04-27 22:42:14 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2004-04-27 22:42:14 +0000 |
commit | 4ce8f40e32b7e5c6fe38f1317c3a4ab02541ecbf (patch) | |
tree | 2aa446ec9aa0425332c62b175ce348103fd2237b /usr.sbin/bgpd/session.h | |
parent | 952562b1234b6166a0d863ba84fcf438a935d011 (diff) |
rename the ipsec struct to auth, move all tcpmd5 related fields in there, and
add a generic "method" field that expresses what method
(none/md5sig/ipsec manual/ipsec ike) is in use
markus ok
Diffstat (limited to 'usr.sbin/bgpd/session.h')
-rw-r--r-- | usr.sbin/bgpd/session.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/usr.sbin/bgpd/session.h b/usr.sbin/bgpd/session.h index 2f013d75b20..29c7bf18797 100644 --- a/usr.sbin/bgpd/session.h +++ b/usr.sbin/bgpd/session.h @@ -1,4 +1,4 @@ -/* $OpenBSD: session.h,v 1.46 2004/04/27 03:53:43 henning Exp $ */ +/* $OpenBSD: session.h,v 1.47 2004/04/27 22:42:13 henning Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -145,11 +145,6 @@ struct peer_stats { time_t last_read; }; -struct peer_auth { - u_int32_t spi_in; - u_int32_t spi_out; -}; - struct peer_capa { u_int8_t announce; u_int8_t mp_v4; /* multiprotocol extensions, RFC 2858 */ @@ -160,7 +155,6 @@ struct peer_capa { struct peer { struct peer_config conf; struct peer_stats stats; - struct peer_auth auth; struct peer_capa capa; u_int32_t remote_bgpid; u_int16_t holdtime; |