use named constant rather than 7337

This commit is contained in:
Seth Alves 2016-09-22 10:34:00 -07:00
parent ba8aa5b50c
commit 0192f72a11

View file

@ -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()) {