[Asterisk-cvs] asterisk/channels chan_sip.c,1.863,1.864

kpfleming kpfleming
Sun Sep 25 23:08:40 CDT 2005


Update of /usr/cvsroot/asterisk/channels
In directory mongoose.digium.com:/tmp/cvs-serv16762/channels

Modified Files:
	chan_sip.c 
Log Message:
properly ignore retransmitted INVITEs on long latency links (issue #3658)


Index: chan_sip.c
===================================================================
RCS file: /usr/cvsroot/asterisk/channels/chan_sip.c,v
retrieving revision 1.863
retrieving revision 1.864
diff -u -d -r1.863 -r1.864
--- chan_sip.c	26 Sep 2005 01:22:09 -0000	1.863
+++ chan_sip.c	26 Sep 2005 03:05:37 -0000	1.864
@@ -10032,7 +10032,7 @@
 			transmit_response(p, "100 Trying", req);
 		}
 	} else {
-		if (p && !ast_test_flag(p, SIP_NEEDDESTROY)) {
+		if (p && !ast_test_flag(p, SIP_NEEDDESTROY) && !ignore) {
 			if (!p->jointcapability) {
 				if (ignore)
 					transmit_response(p, "488 Not Acceptable Here (codec error)", req);




More information about the svn-commits mailing list