From dc24572f945d226d486c138ecf20102ceec4eb35 Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Mon, 4 May 2020 19:32:27 +0100 Subject: [PATCH] lib/uaudio-rtp.c: Set the send buffer for the IPv6 on-demand socket. Organization: Straylight/Edgeware From: Mark Wooding Inexplicably missing. --- lib/uaudio-rtp.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/uaudio-rtp.c b/lib/uaudio-rtp.c index 825018e..ff7e839 100644 --- a/lib/uaudio-rtp.c +++ b/lib/uaudio-rtp.c @@ -391,6 +391,7 @@ static void rtp_open(void) { } /* Enlarge the socket buffers */ hack_send_buffer_size(rtp_fd, "master socket"); + hack_send_buffer_size(rtp_fd6, "IPv6 on-demand socket"); /* We might well want to set additional broadcast- or multicast-related * options here */ if(rtp_mode != RTP_REQUEST) { -- [mdw]