[asterisk-commits] alecdavis: branch 1.8 r353368 - /branches/1.8/channels/chan_sip.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Mon Jan 30 16:40:42 CST 2012
Author: alecdavis
Date: Mon Jan 30 16:40:40 2012
New Revision: 353368
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=353368
Log:
prevent debug messsges displaying -ve Cseq numbers. Missed in R353320
Modified:
branches/1.8/channels/chan_sip.c
Modified: branches/1.8/channels/chan_sip.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.8/channels/chan_sip.c?view=diff&rev=353368&r1=353367&r2=353368
==============================================================================
--- branches/1.8/channels/chan_sip.c (original)
+++ branches/1.8/channels/chan_sip.c Mon Jan 30 16:40:40 2012
@@ -3983,7 +3983,7 @@
res = TRUE;
msg = "Found";
if (!resp && (seqno == p->pendinginvite)) {
- ast_debug(1, "Acked pending invite %d\n", p->pendinginvite);
+ ast_debug(1, "Acked pending invite %u\n", p->pendinginvite);
p->pendinginvite = 0;
}
if (cur->retransid > -1) {
@@ -24947,7 +24947,7 @@
return 0;
}
if (p->ocseq && (p->ocseq < seqno)) {
- ast_debug(1, "Ignoring out of order response %d (expecting %d)\n", seqno, p->ocseq);
+ ast_debug(1, "Ignoring out of order response %u (expecting %u)\n", seqno, p->ocseq);
return -1;
} else {
char causevar[256], causeval[256];
@@ -24987,7 +24987,7 @@
if (p->pendinginvite && seqno == p->pendinginvite && (req->method == SIP_ACK || req->method == SIP_CANCEL)) {
ast_debug(2, "Got CANCEL or ACK on INVITE with transactions in between.\n");
} else {
- ast_debug(1, "Ignoring too old SIP packet packet %d (expecting >= %d)\n", seqno, p->icseq);
+ ast_debug(1, "Ignoring too old SIP packet packet %u (expecting >= %u)\n", seqno, p->icseq);
if (req->method == SIP_INVITE) {
unsigned int ran = (ast_random() % 10) + 1;
char seconds[4];
@@ -25006,7 +25006,7 @@
respond appropriately. We do this if we receive a repeat of
the last sequence number */
req->ignore = 1;
- ast_debug(3, "Ignoring SIP message because of retransmit (%s Seqno %d, ours %d)\n", sip_methods[p->method].text, p->icseq, seqno);
+ ast_debug(3, "Ignoring SIP message because of retransmit (%s Seqno %u, ours %u)\n", sip_methods[p->method].text, p->icseq, seqno);
}
/* RFC 3261 section 9. "CANCEL has no effect on a request to which a UAS has
More information about the asterisk-commits
mailing list