1 /* strongSwan IPsec config file parser
2 * Copyright (C) 2001-2002 Mathieu Lafon - Arkoon Network Security
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License as published by the
6 * Free Software Foundation; either version 2 of the License, or (at your
7 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
11 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * RCSID $Id: confread.h,v 1.23 2006/04/17 10:32:36 as Exp $
17 #ifndef _IPSEC_CONFREAD_H_
18 #define _IPSEC_CONFREAD_H_
22 #include "../pluto/constants.h"
26 #include "interfaces.h"
49 typedef struct starter_end starter_end_t
;
64 bool has_client_wildcard
;
65 bool has_port_wildcard
;
68 certpolicy_t sendcert
;
77 typedef struct also also_t
;
85 typedef struct starter_conn starter_conn_t
;
94 starter_state_t state
;
96 keyexchange_t keyexchange
;
98 time_t sa_ike_life_seconds
;
99 time_t sa_ipsec_life_seconds
;
100 time_t sa_rekey_margin
;
101 unsigned long sa_keying_tries
;
102 unsigned long sa_rekey_fuzz
;
103 sa_family_t addr_family
;
104 sa_family_t tunnel_addr_family
;
106 starter_end_t left
, right
;
116 dpd_action_t dpd_action
;
119 starter_conn_t
*next
;
122 typedef struct starter_ca starter_ca_t
;
131 starter_state_t state
;
145 typedef struct starter_config starter_config_t
;
147 struct starter_config
{
155 /* pluto/charon keywords */
162 u_int crlcheckinterval
;
164 bool strictcrlpolicy
;
168 char *virtual_private
;
170 bool pkcs11keepstate
;
180 /* information about the default route */
181 defaultroute_t defaultroute
;
183 /* number of encountered parsing errors */
186 /* do we parse also statements */
190 starter_ca_t ca_default
;
192 /* connections list (without %default) */
193 starter_ca_t
*ca_first
, *ca_last
;
196 starter_conn_t conn_default
;
198 /* connections list (without %default) */
199 starter_conn_t
*conn_first
, *conn_last
;
202 extern starter_config_t
*confread_load(const char *file
);
203 extern void confread_free(starter_config_t
*cfg
);
205 #endif /* _IPSEC_CONFREAD_H_ */