Skip to content
Snippets Groups Projects
Commit 5e1bfd3b authored by Tomas Krizek's avatar Tomas Krizek
Browse files

Merge branch 'dnstap-reinit' into 'master'

dnstap: fix repeated configuration

See merge request !1168
parents 58cdfa41 e7a29fd3
No related branches found
No related tags found
1 merge request!1168dnstap: fix repeated configuration
Pipeline #79508 passed with warnings
Knot Resolver 5.3.2 (2021-0m-dd)
================================
Bugfixes
--------
- dnstap module: fix repeated configuration (!1168)
Knot Resolver 5.3.1 (2021-03-31)
================================
......
......@@ -271,18 +271,22 @@ int dnstap_init(struct kr_module *module) {
return kr_ok();
}
KR_EXPORT
int dnstap_deinit(struct kr_module *module) {
/** Clear, i.e. get to state as after the first dnstap_init(). */
static void dnstap_clear(struct kr_module *module) {
struct dnstap_data *data = module->data;
/* Free allocated memory */
if (data) {
free(data->identity);
free(data->version);
fstrm_iothr_destroy(&data->iothread);
DEBUG_MSG("fstrm iothread destroyed\n");
free(data);
}
}
KR_EXPORT
int dnstap_deinit(struct kr_module *module) {
dnstap_clear(module);
free(module->data);
return kr_ok();
}
......@@ -350,6 +354,7 @@ static bool find_bool(const JsonNode *node) {
/* parse config */
KR_EXPORT
int dnstap_config(struct kr_module *module, const char *conf) {
dnstap_clear(module);
struct dnstap_data *data = module->data;
auto_free char *sock_path = NULL;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment