Skip to content
Snippets Groups Projects
Commit cc22f60f authored by Joshua Colp's avatar Joshua Colp
Browse files

Merged revisions 59195 via svnmerge from

https://origsvn.digium.com/svn/asterisk/branches/1.4

................
r59195 | file | 2007-03-23 21:39:44 -0400 (Fri, 23 Mar 2007) | 10 lines

Merged revisions 59194 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.2

........
r59194 | file | 2007-03-23 21:35:49 -0400 (Fri, 23 Mar 2007) | 2 lines

Only try to handle a response if it has a response code. (ASA-2007-011)

........

................


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@59196 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent 518ff794
Branches
Tags
No related merge requests found
......@@ -15285,8 +15285,7 @@ static int handle_request(struct sip_pvt *p, struct sip_request *req, struct soc
respond appropriately */
ast_set_flag(req, SIP_PKT_IGNORE);
append_history(p, "Ignore", "Ignoring this retransmit\n");
}
} else if (e) {
e = ast_skip_blanks(e);
if (sscanf(e, "%d %n", &respid, &len) != 1) {
ast_log(LOG_WARNING, "Invalid response: '%s'\n", e);
......@@ -15300,6 +15299,7 @@ static int handle_request(struct sip_pvt *p, struct sip_request *req, struct soc
extract_uri(p, req);
handle_response(p, respid, e + len, req, seqno);
}
}
return 0;
}
 
......
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment