From de3f95c8e44d62f619c97f0681ea9b1281e271d0 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Tue, 5 Sep 2023 12:52:01 +0200 Subject: [PATCH] Remove accidentially committed example configs Signed-off-by: Steffen Vogel --- webrtc_a.conf | 35 ----------------------------------- webrtc_b.conf | 35 ----------------------------------- 2 files changed, 70 deletions(-) delete mode 100644 webrtc_a.conf delete mode 100644 webrtc_b.conf diff --git a/webrtc_a.conf b/webrtc_a.conf deleted file mode 100644 index 403d38827..000000000 --- a/webrtc_a.conf +++ /dev/null @@ -1,35 +0,0 @@ -# SPDX-FileCopyrightText: 2014-2023 Institute for Automation of Complex Power Systems, RWTH Aachen University -# SPDX-License-Identifier: Apache-2.0 - -nodes = { - webrtc = { - type = "webrtc", - - # A unique session identifier which must be shared between two nodes - session = "KUCHEN" - peer = "a" - - # Address to the websocket signaling server - server = "http://172.23.157.207:8080" - - # wait_seconds = 5 - } - - signal = { - type = "signal" - signal = "sine" - values = 1 - rate = 0.2 - } -} - -paths = ( - { - in = "signal" - out = "webrtc" - }, - { - in = "webrtc" - hooks = ("print") - } -) diff --git a/webrtc_b.conf b/webrtc_b.conf deleted file mode 100644 index 897d75582..000000000 --- a/webrtc_b.conf +++ /dev/null @@ -1,35 +0,0 @@ -# SPDX-FileCopyrightText: 2014-2023 Institute for Automation of Complex Power Systems, RWTH Aachen University -# SPDX-License-Identifier: Apache-2.0 - -nodes = { - webrtc = { - type = "webrtc", - - # A unique session identifier which must be shared between two nodes - session = "KUCHEN" - peer = "b" - - # Address to the websocket signaling server - server = "http://172.23.157.207:8080" - - # wait_seconds = 5 - } - - signal = { - type = "signal" - signal = "sine" - values = 1 - rate = 0.2 - } -} - -paths = ( - { - in = "signal" - out = "webrtc" - }, - { - in = "webrtc" - hooks = ("print") - } -)