]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
shift from binding to 0.0.0.0 by default to binding to 127.0.0.1. Our last chance...
authorbert hubert <bert.hubert@netherlabs.nl>
Sat, 21 Nov 2015 21:02:18 +0000 (22:02 +0100)
committerbert hubert <bert.hubert@netherlabs.nl>
Sat, 21 Nov 2015 21:02:18 +0000 (22:02 +0100)
pdns/dnsdist.cc

index 13cc129bc309a8dbabc2660d34427f9b17003434..f7482cced4cb81886e1b6a8dd993cbbe3653d208 100644 (file)
@@ -1167,7 +1167,7 @@ try
   }
   
   if(g_locals.empty())
-    g_locals.push_back({ComboAddress("0.0.0.0", 53), true});
+    g_locals.push_back({ComboAddress("127.0.0.1", 53), true});
   
 
   vector<ClientState*> toLaunch;