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"
43 typedef struct starter_end starter_end_t
;
58 bool has_client_wildcard
;
59 bool has_port_wildcard
;
62 certpolicy_t sendcert
;
73 typedef struct also also_t
;
81 typedef struct starter_conn starter_conn_t
;
90 starter_state_t state
;
94 time_t sa_ike_life_seconds
;
95 time_t sa_ipsec_life_seconds
;
96 time_t sa_rekey_margin
;
97 unsigned long sa_keying_tries
;
98 unsigned long sa_rekey_fuzz
;
99 sa_family_t addr_family
;
100 sa_family_t tunnel_addr_family
;
102 starter_end_t left
, right
;
112 dpd_action_t dpd_action
;
115 starter_conn_t
*next
;
118 typedef struct starter_ca starter_ca_t
;
127 starter_state_t state
;
141 typedef struct starter_config starter_config_t
;
143 struct starter_config
{
155 u_int crlcheckinterval
;
157 bool strictcrlpolicy
;
161 char *virtual_private
;
163 bool pkcs11keepstate
;
173 /* information about the default route */
174 defaultroute_t defaultroute
;
176 /* number of encountered parsing errors */
179 /* do we parse also statements */
183 starter_ca_t ca_default
;
185 /* connections list (without %default) */
186 starter_ca_t
*ca_first
, *ca_last
;
189 starter_conn_t conn_default
;
191 /* connections list (without %default) */
192 starter_conn_t
*conn_first
, *conn_last
;
195 extern starter_config_t
*confread_load(const char *file
);
196 extern void confread_free(starter_config_t
*cfg
);
198 #endif /* _IPSEC_CONFREAD_H_ */