diff options
author | Hans-Joerg Hoexer <hshoexer@cvs.openbsd.org> | 2006-06-02 03:31:21 +0000 |
---|---|---|
committer | Hans-Joerg Hoexer <hshoexer@cvs.openbsd.org> | 2006-06-02 03:31:21 +0000 |
commit | 16ce5c8c14e5018230e2d16b15cf8b9bd79208f9 (patch) | |
tree | 406419304a60e78073e70afe38769fb37ff738db /sbin/ipsecctl/ipsecctl.h | |
parent | d6469f3c92ace85543048a57cebdf94b2f355dd3 (diff) |
Generalize parsing of main/quick mode specification. Preparation
for lifetime support.
Diffstat (limited to 'sbin/ipsecctl/ipsecctl.h')
-rw-r--r-- | sbin/ipsecctl/ipsecctl.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sbin/ipsecctl/ipsecctl.h b/sbin/ipsecctl/ipsecctl.h index 10da1082db6..6e5a367c138 100644 --- a/sbin/ipsecctl/ipsecctl.h +++ b/sbin/ipsecctl/ipsecctl.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ipsecctl.h,v 1.44 2006/06/02 00:33:47 hshoexer Exp $ */ +/* $OpenBSD: ipsecctl.h,v 1.45 2006/06/02 03:31:20 hshoexer Exp $ */ /* * Copyright (c) 2004, 2005 Hans-Joerg Hoexer <hshoexer@openbsd.org> * @@ -139,6 +139,11 @@ struct ipsec_life { int lifevolume; }; +struct ike_mode { + struct ipsec_transforms *xfs; + struct ipsec_life *life; +}; + extern const struct ipsec_xf authxfs[]; extern const struct ipsec_xf encxfs[]; |