# HG changeset patch # User Mychaela Falconia # Date 1656296888 28800 # Node ID 87c077b23996f9cc1ff596ce4f46e7e23c85b956 # Parent 4e0a73be9e374b7c4f9003e5e2c7c36da518b105 sip-udp-dump: increase buffer size to 4096 bytes diff -r 4e0a73be9e37 -r 87c077b23996 utils/sip-udp-dump.c --- a/utils/sip-udp-dump.c Sun Jun 26 18:12:32 2022 -0800 +++ b/utils/sip-udp-dump.c Sun Jun 26 18:28:08 2022 -0800 @@ -17,7 +17,7 @@ static int sock; static FILE *logf; -static char dgram[2048]; +static char dgram[4096]; static unsigned dgram_len; static struct sockaddr_in sin; static time_t curtime;