Use DSCP to help with wifi links

master 0.4
Mark Hills 2018-01-23 16:21:51 +00:00
parent e375ceef5a
commit 66b4707a24
1 changed files with 2 additions and 0 deletions

2
tx.c
View File

@ -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;
}