diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2004-04-26 04:14:00 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2004-04-26 04:14:00 +0000 |
commit | c2d709e70cdf69569de01cb21481bdae527f746d (patch) | |
tree | 2e3a0c23c015f2c2dfb0bb37958729fcdfa340a2 /usr.sbin/bgpd | |
parent | 5f0c4f457ea8b7e188bfed56dfbc3a266fb96e32 (diff) |
need keylen too, markus
Diffstat (limited to 'usr.sbin/bgpd')
-rw-r--r-- | usr.sbin/bgpd/bgpd.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/usr.sbin/bgpd/bgpd.h b/usr.sbin/bgpd/bgpd.h index 52dfd98db5a..aac3048f8d4 100644 --- a/usr.sbin/bgpd/bgpd.h +++ b/usr.sbin/bgpd/bgpd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: bgpd.h,v 1.110 2004/04/26 01:59:26 henning Exp $ */ +/* $OpenBSD: bgpd.h,v 1.111 2004/04/26 04:13:59 henning Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -153,10 +153,14 @@ struct peer_ipsec { u_int8_t auth_alg_out; char auth_key_in[IPSEC_AUTH_KEY_LEN]; char auth_key_out[IPSEC_AUTH_KEY_LEN]; + u_int8_t auth_keylen_in; + u_int8_t auth_keylen_out; u_int8_t enc_alg_in; u_int8_t enc_alg_out; char enc_key_in[IPSEC_ENC_KEY_LEN]; char enc_key_out[IPSEC_ENC_KEY_LEN]; + u_int8_t enc_keylen_in; + u_int8_t enc_keylen_out; }; struct peer_config { |