mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-06 20:23:21 +02:00
use named constant rather than 7337
This commit is contained in:
parent
ba8aa5b50c
commit
0192f72a11
1 changed files with 1 additions and 1 deletions
|
@ -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()) {
|
||||
|
|
Loading…
Reference in a new issue