tinc/src/conf.h

68 lines
2.4 KiB
C
Raw Permalink Normal View History

2019-08-26 11:44:48 +00:00
#ifndef TINC_CONF_H
#define TINC_CONF_H
2019-08-26 11:44:36 +00:00
/*
conf.h -- header for conf.c
2019-08-26 11:44:37 +00:00
Copyright (C) 1998-2005 Ivo Timmermans
2019-08-26 11:44:41 +00:00
2000-2012 Guus Sliepen <guus@tinc-vpn.org>
2019-08-26 11:44:36 +00:00
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.
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.
2019-08-26 11:44:38 +00:00
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
2019-08-26 11:44:36 +00:00
*/
2019-08-26 11:44:36 +00:00
#include "avl_tree.h"
2019-08-26 11:44:40 +00:00
#include "list.h"
2019-08-26 11:44:36 +00:00
typedef struct config_t {
2019-08-26 11:44:36 +00:00
char *variable;
char *value;
char *file;
int line;
2019-08-26 11:44:36 +00:00
} config_t;
2019-08-26 11:44:36 +00:00
#include "subnet.h"
2019-08-26 11:44:36 +00:00
extern avl_tree_t *config_tree;
2019-08-26 11:44:37 +00:00
extern int pinginterval;
2019-08-26 11:44:36 +00:00
extern int pingtimeout;
extern int maxtimeout;
2019-08-26 11:44:46 +00:00
extern int mintimeout;
2019-08-26 11:44:36 +00:00
extern bool bypass_security;
2019-08-26 11:44:36 +00:00
extern char *confbase;
extern char *netname;
2019-08-26 11:44:40 +00:00
extern list_t *cmdline_conf;
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:48 +00:00
extern void init_configuration(avl_tree_t **config_tree);
extern void exit_configuration(avl_tree_t **config_tree);
extern config_t *new_config(void) __attribute__((__malloc__));
extern void free_config(config_t *cfg);
extern void config_add(avl_tree_t *config_tree, config_t *cfg);
extern config_t *lookup_config(const avl_tree_t *config_tree, char *variable);
extern config_t *lookup_config_next(const avl_tree_t *config_tree, const config_t *cfg);
extern bool get_config_bool(const config_t *cfg, bool *result);
extern bool get_config_int(const config_t *cfg, int *result);
extern bool get_config_string(const config_t *cfg, char **result);
extern bool get_config_address(const config_t *cfg, struct addrinfo **result);
extern bool get_config_subnet(const config_t *cfg, struct subnet_t **result);
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:48 +00:00
extern config_t *parse_config_line(char *line, const char *fname, int lineno);
extern bool read_config_file(avl_tree_t *config_tree, const char *fname);
extern void read_config_options(avl_tree_t *config_tree, const char *prefix);
2019-08-26 11:44:36 +00:00
extern bool read_server_config(void);
2019-08-26 11:44:48 +00:00
extern bool read_connection_config(struct connection_t *c);
extern FILE *ask_and_open(const char *fname, const char *what);
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:48 +00:00
#endif