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"
55 typedef struct starter_end starter_end_t
;
70 bool has_client_wildcard
;
71 bool has_port_wildcard
;
75 certpolicy_t sendcert
;
84 typedef struct also also_t
;
92 typedef struct starter_conn starter_conn_t
;
101 starter_state_t state
;
103 keyexchange_t keyexchange
;
106 time_t sa_ike_life_seconds
;
107 time_t sa_ipsec_life_seconds
;
108 time_t sa_rekey_margin
;
109 unsigned long sa_keying_tries
;
110 unsigned long sa_rekey_fuzz
;
111 sa_family_t addr_family
;
112 sa_family_t tunnel_addr_family
;
114 starter_end_t left
, right
;
124 dpd_action_t dpd_action
;
127 starter_conn_t
*next
;
130 typedef struct starter_ca starter_ca_t
;
139 starter_state_t state
;
154 typedef struct starter_config starter_config_t
;
156 struct starter_config
{
164 /* pluto/charon keywords */
171 u_int crlcheckinterval
;
173 strict_t strictcrlpolicy
;
177 char *virtual_private
;
180 bool pkcs11keepstate
;
190 /* information about the default route */
191 defaultroute_t defaultroute
;
193 /* number of encountered parsing errors */
196 /* do we parse also statements */
200 starter_ca_t ca_default
;
202 /* connections list (without %default) */
203 starter_ca_t
*ca_first
, *ca_last
;
206 starter_conn_t conn_default
;
208 /* connections list (without %default) */
209 starter_conn_t
*conn_first
, *conn_last
;
212 extern starter_config_t
*confread_load(const char *file
);
213 extern void confread_free(starter_config_t
*cfg
);
215 #endif /* _IPSEC_CONFREAD_H_ */