From 1a3ff9b66e029f32e22a6a3251fd8073479f7af9 Mon Sep 17 00:00:00 2001 From: Vlad Paiu Date: Mon, 13 Nov 2023 17:12:10 +0200 Subject: [PATCH] Increase the static buffer size where the dialog info gets printed to Since we also have the SDP going there, that can grow pretty large ( in webrtc context ) --- modules/dialog/dialog.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/dialog/dialog.c b/modules/dialog/dialog.c index c18671f9da6..519e90c5dc4 100644 --- a/modules/dialog/dialog.c +++ b/modules/dialog/dialog.c @@ -1885,7 +1885,7 @@ int pv_set_dlg_deldelay(struct sip_msg *msg, pv_param_t *param, } -#define DLG_CTX_JSON_BUFF_SIZE 8192 +#define DLG_CTX_JSON_BUFF_SIZE 32768 #define DEC_AND_CHECK_LEN(_curr,_size) \ do { \ _curr-=_size; \