From dacbbe739b958672a4cad16f7ef6fb85dc59c83a Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Mon, 7 Jan 2019 12:52:33 +0100 Subject: [PATCH] rtp: add simple example config --- etc/rtp.conf | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 etc/rtp.conf diff --git a/etc/rtp.conf b/etc/rtp.conf new file mode 100644 index 000000000..e8d3ccb63 --- /dev/null +++ b/etc/rtp.conf @@ -0,0 +1,17 @@ +nodes = { + rtp_node = { + type = "rtp" + + in = { + address = "0.0.0.0:12000", + signals = { + count = 3 + type = "float" + } + } + + out = { + address = "127.0.0.1:12000" + } + } +}