Module: kamailio
Branch: master
Commit: 25b96858e0f89d13cd2093e15fa8d1178c691278
URL:
https://github.com/kamailio/kamailio/commit/25b96858e0f89d13cd2093e15fa8d11…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: GitHub <noreply(a)github.com>
Date: 2017-11-08T09:49:21+01:00
Merge pull request #1307 from armenb/uac_max_message_size
uac: increase UAC message size to 32kbytes
---
Modified: src/modules/uac/uac_send.c
---
Diff:
https://github.com/kamailio/kamailio/commit/25b96858e0f89d13cd2093e15fa8d11…
Patch:
https://github.com/kamailio/kamailio/commit/25b96858e0f89d13cd2093e15fa8d11…
---
diff --git a/src/modules/uac/uac_send.c b/src/modules/uac/uac_send.c
index e0baf13a41..78dc725453 100644
--- a/src/modules/uac/uac_send.c
+++ b/src/modules/uac/uac_send.c
@@ -42,7 +42,7 @@
#include "uac_send.h"
#define MAX_UACH_SIZE 2048
-#define MAX_UACB_SIZE 4086
+#define MAX_UACB_SIZE 32768
#define MAX_UACD_SIZE 128
/** TM bind */
@@ -823,4 +823,4 @@ int w_uac_req_send(struct sip_msg *msg, char *s1, char *s2)
int ki_uac_req_send(sip_msg_t *msg)
{
return uac_req_send();
-}
\ No newline at end of file
+}