X-Git-Url: https://tinc-vpn.org/git/browse?a=blobdiff_plain;f=src%2Fconf.h;h=d01a237c004ebc27d09dbba29e3488db71868e2a;hb=72091d5c770856870bb8cd51bcc5641078c7562c;hp=07db631cdca41cd09f0d7ed82b069cf60e6375ea;hpb=0871c3095151bce6a4031a2662aa51b7193b855c;p=tinc diff --git a/src/conf.h b/src/conf.h index 07db631c..d01a237c 100644 --- a/src/conf.h +++ b/src/conf.h @@ -4,7 +4,7 @@ /* conf.h -- header for conf.c Copyright (C) 1998-2005 Ivo Timmermans - 2000-2013 Guus Sliepen + 2000-2022 Guus Sliepen 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 @@ -32,8 +32,7 @@ typedef struct config_t { int line; } config_t; - -extern splay_tree_t *config_tree; +extern splay_tree_t config_tree; extern int pinginterval; extern int pingtimeout; @@ -41,12 +40,13 @@ extern int maxtimeout; extern bool bypass_security; extern list_t cmdline_conf; -extern void init_configuration(splay_tree_t **config_tree); -extern void exit_configuration(splay_tree_t **config_tree); -extern config_t *new_config(void) __attribute__((__malloc__)); +extern void exit_configuration(splay_tree_t *config_tree); +extern splay_tree_t *create_configuration(void) ATTR_MALLOC ATTR_DEALLOCATOR(exit_configuration); +extern void init_configuration(splay_tree_t *); extern void free_config(config_t *config); +extern config_t *new_config(void) ATTR_MALLOC ATTR_DEALLOCATOR(free_config); extern void config_add(splay_tree_t *config_tree, config_t *config); -extern config_t *lookup_config(splay_tree_t *config_tree, char *variable); +extern config_t *lookup_config(splay_tree_t *config_tree, const char *variable); extern config_t *lookup_config_next(splay_tree_t *config_tree, const config_t *config); extern bool get_config_bool(const config_t *config, bool *result); extern bool get_config_int(const config_t *config, int *result);