mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
webrtc: Change wss:// to https://
Signed-off-by: Philipp Jungkamp <Philipp.Jungkamp@opal-rt.com>
This commit is contained in:
parent
498b8aebdf
commit
87488fc167
3 changed files with 3 additions and 3 deletions
|
@ -8,7 +8,7 @@ nodes = {
|
|||
session = "my-session-name"
|
||||
|
||||
# Address to the websocket signaling server
|
||||
server = "wss://villas.k8s.eonerc.rwth-aachen.de/ws/signaling"
|
||||
server = "https://villas.k8s.eonerc.rwth-aachen.de/ws/signaling"
|
||||
|
||||
# Limit the number of times a channel will retransmit data if not successfully delivered.
|
||||
# This value may be clamped if it exceeds the maximum value supported.
|
||||
|
|
|
@ -25,7 +25,7 @@ static villas::node::Web *web;
|
|||
|
||||
WebRTCNode::WebRTCNode(const std::string &name) :
|
||||
Node(name),
|
||||
server("wss://villas.k8s.eonerc.rwth-aachen.de/ws/signaling"),
|
||||
server("https://villas.k8s.eonerc.rwth-aachen.de/ws/signaling"),
|
||||
wait_seconds(0),
|
||||
format(nullptr),
|
||||
queue({}),
|
||||
|
|
|
@ -98,7 +98,7 @@
|
|||
var dc = null; // RTCDataChannel for the local (sender)
|
||||
var sc = null; // Signaling Client
|
||||
|
||||
var server = 'wss://villas.k8s.eonerc.rwth-aachen.de/ws/signaling';
|
||||
var server = 'https://villas.k8s.eonerc.rwth-aachen.de/ws/signaling';
|
||||
var sessionName = 'my-session-name';
|
||||
var iceUsername = 'villas';
|
||||
var icePassword = 'villas';
|
||||
|
|
Loading…
Add table
Reference in a new issue