From: Joshua C. Colp Date: Tue, 28 Apr 2020 15:31:28 +0000 (-0300) Subject: pjsip: Increase maximum ICE candidate count. X-Git-Tag: 17.5.0-rc1~24 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6c0d4be246c598976aaac967e694c39f49b96584;p=thirdparty%2Fasterisk.git 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 --- diff --git a/third-party/pjproject/patches/config_site.h b/third-party/pjproject/patches/config_site.h index 9e897d58ed..aea7d0d38e 100644 --- a/third-party/pjproject/patches/config_site.h +++ b/third-party/pjproject/patches/config_site.h @@ -71,7 +71,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 */