From dab033ee3b96add19ac6cbbbe91cb22b8e7c93a2 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Fri, 5 Apr 2019 00:39:51 -0700 Subject: [PATCH] Avoid testing UDP 48002 and UDP 48010 since they are currently unused --- mist/mist.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/mist/mist.cpp b/mist/mist.cpp index a65c445..3a714ab 100644 --- a/mist/mist.cpp +++ b/mist/mist.cpp @@ -42,8 +42,13 @@ static struct port_entry { {IPPROTO_UDP, 47998, true}, {IPPROTO_UDP, 47999, true}, {IPPROTO_UDP, 48000, true}, + +#if 0 + // These are not currently used, so let's + // avoid testing them for now. {IPPROTO_UDP, 48002, true}, {IPPROTO_UDP, 48010, true} +#endif }; char logFilePath[MAX_PATH + 1];