diff --git a/configs/rtp.conf.sample b/configs/rtp.conf.sample index 196e05e2da09fa04efed22bc92675c8c605563d2..c22acaa9fa57f05921998e9406aac033a8cf8262 100644 --- a/configs/rtp.conf.sample +++ b/configs/rtp.conf.sample @@ -33,8 +33,8 @@ rtpend=20000 ; connected. This option is set to 4 by default. ; probation=8 ; -; Whether to enable or disable ICE support. This option is enabled by default. -; icesupport=false +; Whether to enable or disable ICE support. This option is disabled by default. +; icesupport=true ; ; Hostname or address for the STUN server used when determining the external ; IP address and port an RTP session can be reached at. The port number is diff --git a/res/res_rtp_asterisk.c b/res/res_rtp_asterisk.c index 25fd3d52384d894d88316b4800ccc8749de5e39d..00f909fae481771935421590f2decf622fa61ec9 100644 --- a/res/res_rtp_asterisk.c +++ b/res/res_rtp_asterisk.c @@ -111,7 +111,7 @@ enum strict_rtp_state { }; #define DEFAULT_STRICT_RTP STRICT_RTP_CLOSED -#define DEFAULT_ICESUPPORT 1 +#define DEFAULT_ICESUPPORT 0 extern struct ast_srtp_res *res_srtp; extern struct ast_srtp_policy_res *res_srtp_policy;