aboutsummaryrefslogtreecommitdiffstats
path: root/channels
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2009-09-17 22:36:04 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2009-09-17 22:36:04 +0000
commitd612fe835e62bcbff39812dbfce7e032f31dc745 (patch)
treeb520267e8de31fceafae0075c6364f5c1e70e2be /channels
parent6f2e48abf16fd98aa8d2bb43f5d51ee5a37f04b9 (diff)
Merged revisions 219324 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ................ r219324 | mmichelson | 2009-09-17 17:22:01 -0500 (Thu, 17 Sep 2009) | 12 lines 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: http://svn.digium.com/svn/asterisk/branches/1.6.0@219365 f38db490-d61c-443f-a65b-d21fe96a405b
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 b84c56035..683cfeb13 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -17454,6 +17454,7 @@ static int handle_request_invite(struct sip_pvt *p, struct sip_request *req, int
char *at = strchr(uri, '@');
char *peerorhost;
ast_debug(3, "Potential spiral detected. Original RURI was %s, new RURI is %s\n", p->initreq.rlPart2, req->rlPart2);
+ transmit_response(p, "100 Trying", req);
if (at) {
*at = '\0';
}