dect
/
asterisk
Archived
13
0
Fork 0

Don't "ignore" on CANCEL (bug #2670)

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@4034 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
markster 2004-10-19 03:17:26 +00:00
parent 852e93e07c
commit b75d2252b6
1 changed files with 1 additions and 1 deletions

View File

@ -7045,7 +7045,7 @@ static int handle_request(struct sip_pvt *p, struct sip_request *req, struct soc
if (p->icseq && (p->icseq > seqno)) {
ast_log(LOG_DEBUG, "Ignoring too old packet packet %d (expecting >= %d)\n", seqno, p->icseq);
return -1;
} else if (p->icseq && (p->icseq == seqno)) {
} else if (p->icseq && (p->icseq == seqno) && (strcasecmp(cmd, "CANCEL") || p->alreadygone)) {
/* ignore means "don't do anything with it" but still have to
respond appropriately. We do this if we receive a repeat of
the last sequence number */