aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@soleta.eu>2014-08-28 15:14:33 +0200
committerPablo Neira Ayuso <pablo@soleta.eu>2014-08-28 15:17:41 +0200
commit7a990e8e53d75fb58f72f5cc8dd613c528eda422 (patch)
treec64aa4c7cb093930cfed224cf1658f97d0c64334
parentd8947e37b09d4762161229324ad2bd35309b4d13 (diff)
osmux: disable timing reconstruction debugging
Should be enabled only in case you consider that Osmux should is lagging when reconstructing RTP messages. I haven't seen any issue regarding this so far. Let's disable it by default.
-rw-r--r--src/osmux.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/osmux.c b/src/osmux.c
index 3705698..b699cd1 100644
--- a/src/osmux.c
+++ b/src/osmux.c
@@ -23,7 +23,10 @@
#include <arpa/inet.h>
+/* This allows you to debug timing reconstruction in the output path */
+#if 0
#define DEBUG_TIMING 0
+#endif
/* Default: MTU - iphdr (20 bytes) - udphdr (8 bytes) */
#define OSMUX_BATCH_MAX 1472