From 0192f72a110446cf184c7a65445920da906c85cc Mon Sep 17 00:00:00 2001 From: Seth Alves Date: Thu, 22 Sep 2016 10:34:00 -0700 Subject: [PATCH] use named constant rather than 7337 --- tools/ice-client/src/ICEClientApp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ice-client/src/ICEClientApp.cpp b/tools/ice-client/src/ICEClientApp.cpp index 1a251a45c2..992014ad7d 100644 --- a/tools/ice-client/src/ICEClientApp.cpp +++ b/tools/ice-client/src/ICEClientApp.cpp @@ -86,7 +86,7 @@ ICEClientApp::ICEClientApp(int argc, char* argv[]) : QHostAddress address { hostnamePortString.left(hostnamePortString.indexOf(':')) }; quint16 port { (quint16) hostnamePortString.mid(hostnamePortString.indexOf(':') + 1).toUInt() }; if (port == 0) { - port = 7337; + port = ICE_SERVER_DEFAULT_PORT; } if (address.isNull()) {