From 66b4707a24172751a131e24d2a800496c699137f Mon Sep 17 00:00:00 2001 From: Mark Hills Date: Tue, 23 Jan 2018 16:21:51 +0000 Subject: [PATCH] Use DSCP to help with wifi links --- tx.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tx.c b/tx.c index b0a41dc..cdf81c4 100644 --- a/tx.c +++ b/tx.c @@ -48,6 +48,8 @@ static RtpSession* create_rtp_send(const char *addr_desc, const int port) abort(); if (rtp_session_set_multicast_ttl(session, 16) != 0) abort(); + if (rtp_session_set_dscp(session, 40) != 0) + abort(); return session; }