From 9f00bde629a4631ae64ecd697eefa1f351666986 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Wed, 23 Sep 2020 16:38:20 +0200 Subject: [PATCH] Use 127.0.0.1 instead of localhost in capture. This is to keep the default address uniform between tools. There was a case where localhost wasn't resolving properly and a connection couldn't be established. --- capture/src/capture.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/capture/src/capture.cpp b/capture/src/capture.cpp index 7a6544f8..5b4bf436 100644 --- a/capture/src/capture.cpp +++ b/capture/src/capture.cpp @@ -45,7 +45,7 @@ int main( int argc, char** argv ) #endif bool overwrite = false; - const char* address = "localhost"; + const char* address = "127.0.0.1"; const char* output = nullptr; int port = 8086;