From 4628dc0118d8c3dc88f59b5c102714fce430c595 Mon Sep 17 00:00:00 2001 From: Gerald Combs Date: Wed, 16 Apr 2014 13:23:04 -0700 Subject: [PATCH] Disable transport name resolution by default. Modern hosts typically open many more TCP and UDP connections than in years past. For an example opening a popular news site in a web browser can easily trigger dozens of separate connections. At the same time our services file has accumulated a lot of cruft over time. As a result transport name resolution is a bunch of lies. Change-Id: Ibbca5b1c7ea1e800fc46dad63b9270128dacd721 Reviewed-on: https://code.wireshark.org/review/1240 Reviewed-by: Anders Broman --- epan/addr_resolv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/epan/addr_resolv.c b/epan/addr_resolv.c index a2fb66a405..c752bb97b4 100644 --- a/epan/addr_resolv.c +++ b/epan/addr_resolv.c @@ -338,7 +338,7 @@ ipv6_equal(gconstpointer v1, gconstpointer v2) /* * Flag controlling what names to resolve. */ -e_addr_resolve gbl_resolv_flags = {TRUE, FALSE, TRUE, TRUE, TRUE, FALSE}; +e_addr_resolve gbl_resolv_flags = {TRUE, FALSE, FALSE, TRUE, TRUE, FALSE}; #if defined(HAVE_C_ARES) || defined(HAVE_GNU_ADNS) static guint name_resolve_concurrency = 500; #endif -- 2.34.1