From 35f7e24ebcc14072995a2726d8a85710f92be14d Mon Sep 17 00:00:00 2001 From: "Joshua C. Colp" Date: Tue, 28 Apr 2020 12:31:28 -0300 Subject: [PATCH] pjsip: Increase maximum ICE candidate count. In practice it has been seen that some users come close to our maximum ICE candidate count of 32. In case people have gone over this increases the count to 64, giving ample room. ASTERISK-28859 Change-Id: I35cd68948ec0ada86c14eb53092cdaf8b62996cf --- third-party/pjproject/patches/config_site.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/third-party/pjproject/patches/config_site.h b/third-party/pjproject/patches/config_site.h index 7c0e3cb11b..c9fd19d10b 100644 --- a/third-party/pjproject/patches/config_site.h +++ b/third-party/pjproject/patches/config_site.h @@ -68,7 +68,7 @@ #define PJ_TODO(x) /* Defaults too low for WebRTC */ -#define PJ_ICE_MAX_CAND 32 +#define PJ_ICE_MAX_CAND 64 #define PJ_ICE_MAX_CHECKS (PJ_ICE_MAX_CAND * PJ_ICE_MAX_CAND) /* Increase limits to allow more formats */ -- 2.47.2