1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
/* misc functions to get compile time and runtime options
* Copyright (C) 2005 Michael Richardson <mcr@xelerance.com>
* Copyright (C) 2009 Paul Wouters <paul@xelerance.com>
* Copyright (C) 2009 Avesh Agarwal <avagarwa@redhat.com>
* Copyright (C) 2012-2013 Paul Wouters <paul@libreswan.org>
* Copyright (C) 2013 D. Hugh Redelmeier <hugh@mimosa.com>
* Copyright (C) 2016 Tuomo Soini <tis@foobar.fi>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version. See <https://www.gnu.org/licenses/gpl2.txt>.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*
*/
#ifndef LSW_CONF_H
#define LSW_CONF_H
struct logger;
struct lsw_conf_options {
char *rootdir; /* default is "" --- used for testing */
char *confdir; /* "/etc" */
char *conffile; /* "/etc/ipsec.conf" */
char *secretsfile; /* "/etc/ipsec.secrets" */
char *ppkdir; /* "/etc/ipsec.d" , for now */
char *vardir; /* "/var/run/pluto" */
char *confddir; /* "/etc/ipsec.d" */
char *policies_dir; /* "/etc/ipsec.d/policies" */
char *cacerts_dir; /* "/etc/ipsec.d/cacerts" */
char *crls_dir; /* "/etc/ipsec.d/crls" */
char *nsspassword_file; /* "/etc/ipsec.d/nsspassword" */
char *nsspassword; /* <password> overrides ^ */
char *nssdir; /* "/var/lib/ipsec" */
};
const struct lsw_conf_options *lsw_init_options(void);
void lsw_conf_free_oco(void);
void lsw_conf_rootdir(const char *root_dir);
void lsw_conf_secretsfile(const char *secretsfile);
void lsw_conf_confddir(const char *confddir, struct logger *logger);
void lsw_conf_nssdir(const char *nssdir, struct logger *logger);
void lsw_conf_nsspassword(const char *nsspassword);
extern int libreswan_selinux(struct logger *logger);
#endif
|