summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES5
-rw-r--r--channels/chan_sip.c36
-rw-r--r--channels/sip/include/sip.h1
-rw-r--r--configs/sip.conf.sample8
4 files changed, 21 insertions, 29 deletions
diff --git a/CHANGES b/CHANGES
index 3baf959fa..1119b3f8a 100644
--- a/CHANGES
+++ b/CHANGES
@@ -643,6 +643,11 @@ Scripts
behavior and uses the current working directory.
+SIP changes
+--------------------------
+ * Extra headers specified with SIPAddHeader are sent with the REFER message
+ when using Transfer application. See refer_addheaders in sip.conf.sample.
+
------------------------------------------------------------------------------
--- Functionality changes from Asterisk 1.8 to Asterisk 10 -------------------
------------------------------------------------------------------------------
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index 8773ae8e7..c56c553dd 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -795,6 +795,7 @@ static int global_max_se; /*!< Highest threshold for session
static int global_store_sip_cause; /*!< Whether the MASTER_CHANNEL(HASH(SIP_CAUSE,[chan_name])) var should be set */
static int global_dynamic_exclude_static = 0; /*!< Exclude static peers from contact registrations */
+static unsigned char global_refer_addheaders; /*!< Add extra headers to outgoing REFER */
/*@}*/
/*!
@@ -13334,17 +13335,11 @@ static int transmit_invite(struct sip_pvt *p, int sipmethod, int sdp, int init,
}
add_date(&req);
if (sipmethod == SIP_REFER && p->refer) { /* Call transfer */
- char buf[SIPBUFSIZE];
-
if (!ast_strlen_zero(p->refer->refer_to)) {
add_header(&req, "Refer-To", p->refer->refer_to);
}
if (!ast_strlen_zero(p->refer->referred_by)) {
- snprintf(buf, sizeof(buf), "%s%s%s",
- p->refer->referred_by_name,
- !ast_strlen_zero(p->refer->referred_by_name) ? " " : "",
- p->refer->referred_by);
- add_header(&req, "Referred-By", buf);
+ add_header(&req, "Referred-By", p->refer->referred_by);
}
} else if (sipmethod == SIP_SUBSCRIBE) {
if (p->subscribed == MWI_NOTIFICATION) {
@@ -13383,7 +13378,8 @@ static int transmit_invite(struct sip_pvt *p, int sipmethod, int sdp, int init,
add_header(&req, "Allow", ALLOWED_METHODS);
add_supported(p, &req);
- if (p->options && p->options->addsipheaders && p->owner) {
+ if (p->owner && ((p->options && p->options->addsipheaders)
+ || (p->refer && global_refer_addheaders))) {
struct ast_channel *chan = p->owner; /* The owner channel */
struct varshead *headp;
@@ -14662,9 +14658,6 @@ static int sip_notify_alloc(struct sip_pvt *p)
*/
static int transmit_refer(struct sip_pvt *p, const char *dest)
{
- struct sip_request req = {
- .headers = 0,
- };
char from[256];
const char *of;
char *c;
@@ -14711,17 +14704,7 @@ static int transmit_refer(struct sip_pvt *p, const char *dest)
ast_string_field_set(p->refer, referred_by, p->our_contact);
p->refer->status = REFER_SENT; /* Set refer status */
- reqprep(&req, p, SIP_REFER, 0, 1);
-
- add_header(&req, "Refer-To", referto);
- add_header(&req, "Allow", ALLOWED_METHODS);
- add_supported(p, &req);
- if (!ast_strlen_zero(p->our_contact)) {
- add_header(&req, "Referred-By", p->our_contact);
- }
-
- return send_request(p, &req, XMIT_RELIABLE, p->ocseq);
-
+ return transmit_invite(p, SIP_REFER, FALSE, 0, NULL);
/* We should propably wait for a NOTIFY here until we ack the transfer */
/* Maybe fork a new thread and wait for a STATUS of REFER_200OK on the refer status before returning to app_transfer */
@@ -16897,12 +16880,6 @@ static int get_refer_info(struct sip_pvt *transferer, struct sip_request *outgoi
if (!ast_strlen_zero(p_referred_by)) {
h_referred_by = ast_strdupa(p_referred_by);
- /* Store referrer's caller ID name */
- ast_string_field_set(refer, referred_by_name, h_referred_by);
- if ((ptr = strchr(refer->referred_by_name, '<')) > refer->referred_by_name) {
- *(ptr - 1) = '\0'; /* Space */
- }
-
referred_by_uri = get_in_brackets(h_referred_by);
if (!strncasecmp(referred_by_uri, "sip:", 4)) {
@@ -30347,6 +30324,7 @@ static int reload_config(enum channelreloadreason reason)
global_qualifyfreq = DEFAULT_QUALIFYFREQ;
global_t38_maxdatagram = -1;
global_shrinkcallerid = 1;
+ global_refer_addheaders = TRUE;
authlimit = DEFAULT_AUTHLIMIT;
authtimeout = DEFAULT_AUTHTIMEOUT;
global_store_sip_cause = DEFAULT_STORE_SIP_CAUSE;
@@ -30904,6 +30882,8 @@ static int reload_config(enum channelreloadreason reason)
ast_set2_flag(&global_flags[2], ast_true(v->value), SIP_PAGE3_ICE_SUPPORT);
} else if (!strcasecmp(v->name, "parkinglot")) {
ast_copy_string(default_parkinglot, v->value, sizeof(default_parkinglot));
+ } else if (!strcasecmp(v->name, "refer_addheaders")) {
+ global_refer_addheaders = ast_true(v->value);
}
}
diff --git a/channels/sip/include/sip.h b/channels/sip/include/sip.h
index 6f75f97e3..dd34a786e 100644
--- a/channels/sip/include/sip.h
+++ b/channels/sip/include/sip.h
@@ -926,7 +926,6 @@ struct sip_refer {
AST_STRING_FIELD(refer_to_urioption); /*!< Place to store REFER-TO uri options */
AST_STRING_FIELD(refer_to_context); /*!< Place to store REFER-TO context */
AST_STRING_FIELD(referred_by); /*!< Place to store REFERRED-BY extension */
- AST_STRING_FIELD(referred_by_name); /*!< Place to store REFERRED-BY extension */
AST_STRING_FIELD(refer_contact); /*!< Place to store Contact info from a REFER extension */
AST_STRING_FIELD(replaces_callid); /*!< Replace info: callid */
AST_STRING_FIELD(replaces_callid_totag); /*!< Replace info: to-tag */
diff --git a/configs/sip.conf.sample b/configs/sip.conf.sample
index c26e74104..d9ffb8578 100644
--- a/configs/sip.conf.sample
+++ b/configs/sip.conf.sample
@@ -502,6 +502,14 @@ srvlookup=yes ; Enable DNS SRV lookups on outbound calls
;use_q850_reason = no ; Default "no"
; Set to yes add Reason header and use Reason header if it is available.
+; When the Transfer() application sends a REFER SIP message, extra headers specified in
+; the dialplan by way of SIPAddHeader are sent out with that message. 1.8 and earlier did not
+; add the extra headers. To revert to 1.8- behavior, call SIPRemoveHeader with no arguments
+; before calling Transfer() to remove all additional headers from the channel. The setting
+; below is for transitional compatibility only.
+;
+;refer_addheaders=yes ; on by default
+
;autocreatepeers=no ; Allow any not exsplicitly defined here UAC to register
; WITHOUT AUTHENTICATION. Enabling this options poses a high
; potential security risk and should be avoided unless the