]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
res_rtp_asterisk: Use PJ_ICE_MAX_CAND instead of hard-coding 16 55/4955/1
authorSean Bright <sean.bright@gmail.com>
Wed, 15 Feb 2017 17:03:00 +0000 (12:03 -0500)
committerSean Bright <sean.bright@gmail.com>
Wed, 15 Feb 2017 17:13:35 +0000 (12:13 -0500)
pjsip limits the total number of ICE candidates to PJ_ICE_MAX_CAND,
which is a compile-time constant. Instead of hard-coding 16 when we
enumerate local interfaces, use PJ_ICE_MAX_CAND so that we can
potentially collect more interfaces if the compile time options are
changed.

Tangentially related to ASTERISK~24464

Change-Id: I1b85509e39e33b1fed63c86261fc229ba14bbabd

res/res_rtp_asterisk.c

index 2f7a1e3e729037899615d51940526786634e23c0..53e07dfc0a306b4f9de82cdb7ce09a597d524de9 100644 (file)
@@ -2481,7 +2481,7 @@ static int rtp_address_is_ice_blacklisted(const pj_sockaddr_t *address)
 static void rtp_add_candidates_to_ice(struct ast_rtp_instance *instance, struct ast_rtp *rtp, struct ast_sockaddr *addr, int port, int component,
                                      int transport)
 {
-       pj_sockaddr address[16];
+       pj_sockaddr address[PJ_ICE_MAX_CAND];
        unsigned int count = PJ_ARRAY_SIZE(address), pos = 0;
        int basepos = -1;