mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-05 04:11:08 +00:00
chan_sip: make progressinband default to no
After the "progressinband" value setting of "never" was updated to never send a 183 this separated its use from the "no" value. Since "never" was the default, but most users probably expect "no" this patch updates the default for the "progressinband" setting to "no." ASTERISK-24835 #close Reported by: Andrew Nagy Review: https://reviewboard.asterisk.org/r/4606/ ........ Merged revisions 434654 from http://svn.asterisk.org/svn/asterisk/branches/13 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@434655 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -291,8 +291,8 @@
|
||||
|
||||
/* Sending PROGRESS in-band settings */
|
||||
#define SIP_PROG_INBAND (3 << 25) /*!< DP: three settings, uses two bits */
|
||||
#define SIP_PROG_INBAND_NEVER (0 << 25)
|
||||
#define SIP_PROG_INBAND_NO (1 << 25)
|
||||
#define SIP_PROG_INBAND_NO (0 << 25)
|
||||
#define SIP_PROG_INBAND_NEVER (1 << 25)
|
||||
#define SIP_PROG_INBAND_YES (2 << 25)
|
||||
|
||||
#define SIP_USEPATH (1 << 27) /*!< GDP: Trust and use incoming Path headers? */
|
||||
|
Reference in New Issue
Block a user