diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2012-04-03 04:23:46 +0200 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2012-04-03 04:23:46 +0200 |
commit | 171dd6a58b89a5a7cdb55711515bec532a8f1bc6 (patch) | |
tree | d706f8179f6646ab3e205034dde5d1b0706550dd /src | |
parent | 89208e7de1c477c8a49b559b36c3177ab1ff5645 (diff) | |
download | fastd-171dd6a58b89a5a7cdb55711515bec532a8f1bc6.tar fastd-171dd6a58b89a5a7cdb55711515bec532a8f1bc6.zip |
Save source dirs with peer configs
Diffstat (limited to 'src')
-rw-r--r-- | src/config.c | 1 | ||||
-rw-r--r-- | src/peer.c | 3 | ||||
-rw-r--r-- | src/peer.h | 2 |
3 files changed, 6 insertions, 0 deletions
diff --git a/src/config.c b/src/config.c index 2cf7494..5fa1591 100644 --- a/src/config.c +++ b/src/config.c @@ -135,6 +135,7 @@ void fastd_read_config_dir(fastd_context *ctx, fastd_config *conf, const char *d fastd_peer_config_new(ctx, conf); conf->peers->name = strdup(result->d_name); + conf->peers->config_source_dir = strdup(dir); if (!fastd_read_config(ctx, conf, result->d_name, true, depth)) { pr_warn(ctx, "peer config %s will be ignored", result->d_name); @@ -83,6 +83,8 @@ fastd_peer_config* fastd_peer_config_new(fastd_context *ctx, fastd_config *conf) memset(&peer->address, 0, sizeof(fastd_peer_address)); + peer->config_source_dir = NULL; + peer->name = NULL; peer->key = NULL; peer->protocol_config = NULL; @@ -96,6 +98,7 @@ fastd_peer_config* fastd_peer_config_new(fastd_context *ctx, fastd_config *conf) void fastd_peer_config_delete(fastd_context *ctx, fastd_config *conf) { fastd_peer_config *peer = conf->peers, *next = peer->next; + free(peer->config_source_dir); free(peer->name); free(peer->key); free(peer); @@ -54,6 +54,8 @@ struct _fastd_peer { struct _fastd_peer_config { fastd_peer_config *next; + char *config_source_dir; + bool enabled; char *name; |