mirror of
https://github.com/Armored-Dragon/overte.git
synced 2025-03-11 16:13:16 +01:00
CR
This commit is contained in:
parent
8e3cfe9805
commit
ccd525a89b
2 changed files with 2 additions and 6 deletions
|
@ -274,13 +274,13 @@ DomainServer::DomainServer(int argc, char* argv[]) :
|
|||
#if defined(WEBRTC_DATA_CHANNELS)
|
||||
const QString WEBRTC_ENABLE = "webrtc.enable_webrtc";
|
||||
bool isWebRTCEnabled = _settingsManager.valueForKeyPath(WEBRTC_ENABLE).toBool();
|
||||
qDebug() << "WebRTC enabled:" << isWebRTCEnabled;
|
||||
qCDebug(domain_server) << "WebRTC enabled:" << isWebRTCEnabled;
|
||||
// The domain server's WebRTC signaling server is used by the domain server and the assignment clients, so disabling it
|
||||
// disables WebRTC for the server as a whole.
|
||||
if (isWebRTCEnabled) {
|
||||
const QString WEBRTC_WSS_ENABLE = "webrtc.enable_webrtc_websocket_ssl";
|
||||
bool isWebRTCEnabled = _settingsManager.valueForKeyPath(WEBRTC_WSS_ENABLE).toBool();
|
||||
qDebug() << "WebRTC WSS enabled:" << isWebRTCEnabled;
|
||||
qCDebug(domain_server) << "WebRTC WSS enabled:" << isWebRTCEnabled;
|
||||
_webrtcSignalingServer.reset(new WebRTCSignalingServer(this, isWebRTCEnabled));
|
||||
}
|
||||
#endif
|
||||
|
|
|
@ -70,10 +70,6 @@ WebRTCSignalingServer::WebRTCSignalingServer(QObject* parent, bool isWSSEnabled)
|
|||
_webSocketServer = (new QWebSocketServer(QStringLiteral("WebRTC Signaling Server"), QWebSocketServer::NonSecureMode,
|
||||
this));
|
||||
}
|
||||
#ifdef WEBRTC_DEBUG
|
||||
qCDebug(networking_webrtc) << "WebRTCSignalingServer mode =" << _webSocketServer->secureMode();
|
||||
#endif
|
||||
|
||||
connect(_webSocketServer, &QWebSocketServer::newConnection, this, &WebRTCSignalingServer::newWebSocketConnection);
|
||||
|
||||
// Automatically recover from network interruptions.
|
||||
|
|
Loading…
Reference in a new issue