summaryrefslogtreecommitdiff
path: root/channels/chan_sip.c
diff options
context:
space:
mode:
authorJonathan Rose <jrose@digium.com>2012-08-29 17:35:32 +0000
committerJonathan Rose <jrose@digium.com>2012-08-29 17:35:32 +0000
commit3f69a4e34fdf714e6b640e660f9cf673dce7e8cc (patch)
tree78df61d51f33f0443cef84c60e0c9580a8b7292c /channels/chan_sip.c
parent504cfd10704b88fa91ce744d330882290101eb05 (diff)
chan_sip: Send 408 on retransmit timeout instead of 603
(closes issue ASTERISK-20124) Reported by: Walter Doekes ........ Merged revisions 371824 from http://svn.asterisk.org/svn/asterisk/branches/1.8 ........ Merged revisions 371825 from http://svn.asterisk.org/svn/asterisk/branches/10 ........ Merged revisions 371845 from http://svn.asterisk.org/svn/asterisk/branches/11 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@371851 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels/chan_sip.c')
-rw-r--r--channels/chan_sip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index 5661a6e85..f5d5a79c6 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -3928,7 +3928,7 @@ static int retrans_pkt(const void *data)
/* there is nothing left to do, mark the dialog as gone */
sip_alreadygone(pkt->owner);
}
- ast_queue_hangup_with_cause(pkt->owner->owner, AST_CAUSE_PROTOCOL_ERROR);
+ ast_queue_hangup_with_cause(pkt->owner->owner, AST_CAUSE_NO_USER_RESPONSE);
ast_channel_unlock(pkt->owner->owner);
} else {
/* If no channel owner, destroy now */