"port" -> "network_port"

This commit is contained in:
Kalila L 2020-11-25 15:19:35 -05:00
parent 97681786cd
commit cec112dd28
2 changed files with 3 additions and 3 deletions

View file

@ -2024,7 +2024,7 @@
"default": ""
},
{
"name": "port",
"name": "network_port",
"type": "int",
"default": 0
}

View file

@ -1507,7 +1507,7 @@ const QString DOMAIN_UPDATE_AUTOMATIC_NETWORKING_KEY = "automatic_networking";
void DomainServer::performIPAddressPortUpdate(const HifiSockAddr& newPublicSockAddr) {
static const QString PUBLIC_SOCKET_ADDRESS_KEY = "network_address";
static const QString PUBLIC_SOCKET_PORT_KEY = "port";
static const QString PUBLIC_SOCKET_PORT_KEY = "network_port";
const QString& publicSocketAddress = newPublicSockAddr.getAddress().toString();
const int publicSocketPort = newPublicSockAddr.getPort();
@ -1533,7 +1533,7 @@ void DomainServer::sendHeartbeatToMetaverse(const QString& networkAddress, const
domainObject[PROTOCOL_VERSION_KEY] = protocolVersionsSignatureBase64();
static const QString PUBLIC_SOCKET_ADDRESS_KEY = "network_address";
static const QString PUBLIC_SOCKET_PORT_KEY = "port";
static const QString PUBLIC_SOCKET_PORT_KEY = "network_port";
static const QString NETWORK_ADDRESS_SETTINGS_KEY = "domain_server." + PUBLIC_SOCKET_ADDRESS_KEY;
const QString networkAddressFromSettings = _settingsManager.valueForKeyPath(NETWORK_ADDRESS_SETTINGS_KEY).toString();