summaryrefslogtreecommitdiff
path: root/channels
diff options
context:
space:
mode:
authorMark Michelson <mmichelson@digium.com>2009-09-17 22:22:01 +0000
committerMark Michelson <mmichelson@digium.com>2009-09-17 22:22:01 +0000
commitdc6f08e2757fac902ec3ed7e6e67785955fe4efe (patch)
tree80c29fd885893ea11b2da153563cb5cda9e7a982 /channels
parent0284951e77b6cce47f117ffa263dd08101d10e5c (diff)
Merged revisions 219320 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r219320 | mmichelson | 2009-09-17 17:20:50 -0500 (Thu, 17 Sep 2009) | 6 lines Send a 100 Trying response when we detect a spiral. This was problematic during spiral tests at SIPit... along with some other things as well. ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@219324 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_sip.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index e1081c493..78e787520 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -20208,6 +20208,7 @@ static int handle_request_invite(struct sip_pvt *p, struct sip_request *req, int
char *at = strchr(uri, '@');
char *peerorhost;
ast_debug(2, "Potential spiral detected. Original RURI was %s, new RURI is %s\n", initial_rlPart2, this_rlPart2);
+ transmit_response(p, "100 Trying", req);
if (at) {
*at = '\0';
}