From 779db9ec5dfd495904f8ba92c6b263049e15e5a3 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Mon, 28 Jan 2019 10:51:16 +0100 Subject: [PATCH] rtp: disable netem by default in example config --- etc/rtp.conf | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/etc/rtp.conf b/etc/rtp.conf index d9487587a..227101e33 100644 --- a/etc/rtp.conf +++ b/etc/rtp.conf @@ -28,9 +28,11 @@ nodes = { address = "127.0.0.1:12000" netem = { # Network emulation settings - delay = 100000, # Additional latency in microseconds - loss = 10 # Packet loss in percent - } + enabled = false, + + delay = 100000, # Additional latency in microseconds + loss = 10 # Packet loss in percent + } } } }