mirror of
https://github.com/overte-org/overte.git
synced 2025-04-18 00:26:33 +02:00
make the ice server const scoped to remove warning
This commit is contained in:
parent
4e0bb94cdd
commit
8ce474d3e1
1 changed files with 1 additions and 1 deletions
|
@ -1002,7 +1002,6 @@ void DomainServer::updateNetworkingInfoWithDataServer(const QString& newSetting,
|
|||
}
|
||||
|
||||
// todo: have data-web respond with ice-server hostname to use
|
||||
const HifiSockAddr ICE_SERVER_SOCK_ADDR = HifiSockAddr("ice.highfidelity.io", ICE_SERVER_DEFAULT_PORT);
|
||||
|
||||
void DomainServer::performICEUpdates() {
|
||||
sendHearbeatToIceServer();
|
||||
|
@ -1010,6 +1009,7 @@ void DomainServer::performICEUpdates() {
|
|||
}
|
||||
|
||||
void DomainServer::sendHearbeatToIceServer() {
|
||||
const HifiSockAddr ICE_SERVER_SOCK_ADDR = HifiSockAddr("ice.highfidelity.io", ICE_SERVER_DEFAULT_PORT);
|
||||
LimitedNodeList::getInstance()->sendHeartbeatToIceServer(ICE_SERVER_SOCK_ADDR);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue