From 687e413fd8f7dd124a20b3400984463808e6d582 Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Wed, 7 Sep 2011 13:26:50 +0000 Subject: [PATCH] Adding the Feature to sent a Reason Header in a SIP Cancel message by set the flag AST_FLAG_ANSWERED_ELSEWHERE before doing a masquerade in the pickup function. git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@334682 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- main/features.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/main/features.c b/main/features.c index b77494d467..b0df34f315 100644 --- a/main/features.c +++ b/main/features.c @@ -7048,6 +7048,9 @@ int ast_do_pickup(struct ast_channel *chan, struct ast_channel *target) ast_log(LOG_WARNING, "Unable to queue answer on '%s'\n", chan_name); goto pickup_failed; } + + /* setting this flag to generate a reason header in the cancel message to the ringing channel */ + ast_set_flag(chan, AST_FLAG_ANSWERED_ELSEWHERE); if (ast_channel_masquerade(target, chan)) { ast_log(LOG_WARNING, "Unable to masquerade '%s' into '%s'\n", chan_name,