diff options
author | Hakan Olsson <ho@cvs.openbsd.org> | 2002-06-08 23:09:47 +0000 |
---|---|---|
committer | Hakan Olsson <ho@cvs.openbsd.org> | 2002-06-08 23:09:47 +0000 |
commit | 86e69da2c8a6cc58e114cdbb9ad5ba694cb0a4e4 (patch) | |
tree | 9ac1917efaed7c712ef999b9721aea293285278e | |
parent | 49f14b1e06acb011937c8bcd83537dfd589ce0ec (diff) |
add cfg_type
-rw-r--r-- | sbin/isakmpd/ipsec.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sbin/isakmpd/ipsec.h b/sbin/isakmpd/ipsec.h index 3b6b94bef14..71f4b1fe868 100644 --- a/sbin/isakmpd/ipsec.h +++ b/sbin/isakmpd/ipsec.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ipsec.h,v 1.19 2001/08/22 08:49:00 niklas Exp $ */ +/* $OpenBSD: ipsec.h,v 1.20 2002/06/08 23:09:46 ho Exp $ */ /* $EOM: ipsec.h,v 1.42 2000/12/03 07:58:20 angelos Exp $ */ /* @@ -107,7 +107,8 @@ struct ipsec_exch { #ifdef USE_ISAKMP_CFG /* ISAKMP configuration mode parameters */ u_int16_t cfg_id; - LIST_HEAD (, isakmp_cfg_attr) attrs; + u_int16_t cfg_type; + LIST_HEAD (isakmp_cfg_attr_head, isakmp_cfg_attr) attrs; #endif }; |