summaryrefslogtreecommitdiffstats
path: root/src/resolv/async_resolv.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/resolv/async_resolv.c')
-rw-r--r--src/resolv/async_resolv.c19
1 files changed, 2 insertions, 17 deletions
diff --git a/src/resolv/async_resolv.c b/src/resolv/async_resolv.c
index dce321e0c..60d9e05bf 100644
--- a/src/resolv/async_resolv.c
+++ b/src/resolv/async_resolv.c
@@ -78,11 +78,6 @@ struct fd_watch {
};
struct resolv_ctx {
- /* Contexts are linked so we can keep track of them and re-create
- * the ares channels in all of them at once if we need to. */
- struct resolv_ctx *prev;
- struct resolv_ctx *next;
-
struct tevent_context *ev_ctx;
ares_channel channel;
@@ -109,8 +104,6 @@ struct resolv_request {
struct tevent_timer *request_timeout;
};
-struct resolv_ctx *context_list;
-
static int
return_code(int ares_code)
{
@@ -406,8 +399,6 @@ resolv_ctx_destructor(struct resolv_ctx *ctx)
{
ares_channel channel;
- DLIST_REMOVE(context_list, ctx);
-
if (ctx->channel == NULL) {
DEBUG(1, ("Ares channel already destroyed?\n"));
return -1;
@@ -487,7 +478,6 @@ resolv_init(TALLOC_CTX *mem_ctx, struct tevent_context *ev_ctx,
goto done;
}
- DLIST_ADD(context_list, ctx);
talloc_set_destructor(ctx, resolv_ctx_destructor);
*ctxp = ctx;
@@ -499,14 +489,9 @@ done:
}
void
-resolv_reread_configuration(void)
+resolv_reread_configuration(struct resolv_ctx *ctx)
{
- struct resolv_ctx *ctx;
-
- DEBUG(4, ("Recreating all c-ares channels\n"));
- DLIST_FOR_EACH(ctx, context_list) {
- recreate_ares_channel(ctx);
- }
+ recreate_ares_channel(ctx);
}
static errno_t