mirror of
https://github.com/overte-org/overte.git
synced 2025-04-07 00:52:58 +02: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)
|
#if defined(WEBRTC_DATA_CHANNELS)
|
||||||
const QString WEBRTC_ENABLE = "webrtc.enable_webrtc";
|
const QString WEBRTC_ENABLE = "webrtc.enable_webrtc";
|
||||||
bool isWebRTCEnabled = _settingsManager.valueForKeyPath(WEBRTC_ENABLE).toBool();
|
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
|
// 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.
|
// disables WebRTC for the server as a whole.
|
||||||
if (isWebRTCEnabled) {
|
if (isWebRTCEnabled) {
|
||||||
const QString WEBRTC_WSS_ENABLE = "webrtc.enable_webrtc_websocket_ssl";
|
const QString WEBRTC_WSS_ENABLE = "webrtc.enable_webrtc_websocket_ssl";
|
||||||
bool isWebRTCEnabled = _settingsManager.valueForKeyPath(WEBRTC_WSS_ENABLE).toBool();
|
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));
|
_webrtcSignalingServer.reset(new WebRTCSignalingServer(this, isWebRTCEnabled));
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -70,10 +70,6 @@ WebRTCSignalingServer::WebRTCSignalingServer(QObject* parent, bool isWSSEnabled)
|
||||||
_webSocketServer = (new QWebSocketServer(QStringLiteral("WebRTC Signaling Server"), QWebSocketServer::NonSecureMode,
|
_webSocketServer = (new QWebSocketServer(QStringLiteral("WebRTC Signaling Server"), QWebSocketServer::NonSecureMode,
|
||||||
this));
|
this));
|
||||||
}
|
}
|
||||||
#ifdef WEBRTC_DEBUG
|
|
||||||
qCDebug(networking_webrtc) << "WebRTCSignalingServer mode =" << _webSocketServer->secureMode();
|
|
||||||
#endif
|
|
||||||
|
|
||||||
connect(_webSocketServer, &QWebSocketServer::newConnection, this, &WebRTCSignalingServer::newWebSocketConnection);
|
connect(_webSocketServer, &QWebSocketServer::newConnection, this, &WebRTCSignalingServer::newWebSocketConnection);
|
||||||
|
|
||||||
// Automatically recover from network interruptions.
|
// Automatically recover from network interruptions.
|
||||||
|
|
Loading…
Reference in a new issue