X-Git-Url: https://www.tinc-vpn.org/git/browse?a=blobdiff_plain;ds=sidebyside;f=src%2Fnet.c;h=fd79fdc7ed84ee59233fbac74096e166287fd552;hb=c9084dfa2654349efcaffd51f120399f903f756a;hp=c5e5707b9ae415538e3db79ca8cc21dae0c8f90b;hpb=b0cc043315220046973d28b144665b2c820e3bd6;p=tinc diff --git a/src/net.c b/src/net.c index c5e5707b..fd79fdc7 100644 --- a/src/net.c +++ b/src/net.c @@ -41,6 +41,10 @@ #include "subnet.h" #include "xalloc.h" +#ifdef HAVE_RESOLV_H +#include +#endif + bool do_purge = false; volatile bool running = false; #ifdef HAVE_PSELECT @@ -494,6 +498,9 @@ int main_loop(void) { avl_node_t *node; logger(LOG_INFO, "Flushing event queue"); expire_events(); +#ifdef HAVE_DECL_RES_INIT + res_init(); +#endif for(node = connection_tree->head; node; node = node->next) { connection_t *c = node->data; if(c->status.active)