summaryrefslogtreecommitdiff
path: root/sbin/ipsecctl/ipsecctl.h
diff options
context:
space:
mode:
authorHans-Joerg Hoexer <hshoexer@cvs.openbsd.org>2006-05-27 17:21:41 +0000
committerHans-Joerg Hoexer <hshoexer@cvs.openbsd.org>2006-05-27 17:21:41 +0000
commit0539e0af48cb342240e4f31544abc301de2b3c64 (patch)
tree4873395db3e235384c4f70e83702346b865e9342 /sbin/ipsecctl/ipsecctl.h
parent8213887efe887207cfa3c3eeba961109b03e1294 (diff)
allow to specify groups to be used IKE
Diffstat (limited to 'sbin/ipsecctl/ipsecctl.h')
-rw-r--r--sbin/ipsecctl/ipsecctl.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/sbin/ipsecctl/ipsecctl.h b/sbin/ipsecctl/ipsecctl.h
index 1738fe719a5..b354bd5a18a 100644
--- a/sbin/ipsecctl/ipsecctl.h
+++ b/sbin/ipsecctl/ipsecctl.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: ipsecctl.h,v 1.31 2006/03/31 13:13:51 markus Exp $ */
+/* $OpenBSD: ipsecctl.h,v 1.32 2006/05/27 17:21:40 hshoexer Exp $ */
/*
* Copyright (c) 2004, 2005 Hans-Joerg Hoexer <hshoexer@openbsd.org>
*
@@ -66,6 +66,10 @@ enum {
COMPXF_UNKNOWN, COMPXF_DEFLATE, COMPXF_LZS
};
enum {
+ GROUPXF_UNKNOWN, GROUPXF_768, GROUPXF_1024, GROUPXF_1536, GROUPXF_2048,
+ GROUPXF_3072, GROUPXF_4096, GROUPXF_6144, GROUPXF_8192,
+};
+enum {
IKE_ACTIVE, IKE_PASSIVE, IKE_DYNAMIC
};
enum {
@@ -123,6 +127,7 @@ struct ipsec_transforms {
const struct ipsec_xf *authxf;
const struct ipsec_xf *encxf;
const struct ipsec_xf *compxf;
+ const struct ipsec_xf *groupxf;
};
extern const struct ipsec_xf authxfs[];