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.
This commit is contained in:
Bartosz Taudul 2020-09-23 16:38:20 +02:00
parent 751692eedd
commit 9f00bde629

View File

@ -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;