Add doc and turn off premature media filter by default

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.0@216654 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Olle Johansson
2009-09-07 11:56:22 +00:00
parent 9ecf61f22c
commit bb05e54b0e
2 changed files with 7 additions and 1 deletions

View File

@@ -8,6 +8,12 @@
===
======================================================================
SIP changes
-----------
* Added a new option "prematuremedia" that defaults to "no". If you turn this
option on, chan_sip will not automatically initiate early media if it receives
audio from the incoming channel before there's been a progress indication.
-----------------------------------------------------------------------------------
--- Functionality changes from Asterisk 1.6.0.10 to Asterisk 1.6.0.11 -------------
-----------------------------------------------------------------------------------

View File

@@ -21873,7 +21873,7 @@ static int reload_config(enum channelreloadreason reason)
snprintf(global_useragent, sizeof(global_useragent), "%s %s", DEFAULT_USERAGENT, ast_get_version());
snprintf(global_sdpsession, sizeof(global_sdpsession), "%s %s", DEFAULT_SDPSESSION, ast_get_version());
snprintf(global_sdpowner, sizeof(global_sdpowner), "%s", DEFAULT_SDPOWNER);
global_prematuremediafilter = TRUE;
global_prematuremediafilter = FALSE;
ast_copy_string(default_notifymime, DEFAULT_NOTIFYMIME, sizeof(default_notifymime));
ast_copy_string(global_realm, S_OR(ast_config_AST_SYSTEM_NAME, DEFAULT_REALM), sizeof(global_realm));
ast_copy_string(default_callerid, DEFAULT_CALLERID, sizeof(default_callerid));