mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-03 11:25:35 +00:00
pjproject/patches/config_site: Increase the max number of ICE candidates
When negotiating ICE candidates with WebRTC capable endpoints, many networks will result in a browser offering ICE candidates that exceeds the default number of max candidates, 16. This patch bumps the max candidates to 32, with the max checks at twice the number of candidates. In practice, this has shown to be sufficient for browser/WebRTC negotiation. Change-Id: Ifd8da8b315f5ae14814d4ce20e10d2e6355020e5
This commit is contained in:
4
third-party/pjproject/patches/config_site.h
vendored
4
third-party/pjproject/patches/config_site.h
vendored
@@ -37,3 +37,7 @@
|
||||
|
||||
#undef PJ_TODO
|
||||
#define PJ_TODO(x)
|
||||
|
||||
/* Defaults too low for WebRTC */
|
||||
#define PJ_ICE_MAX_CAND 32
|
||||
#define PJ_ICE_MAX_CHECKS (PJ_ICE_MAX_CAND * 2)
|
||||
|
Reference in New Issue
Block a user