|
|
@ -5279,7 +5279,7 @@ static int transmit_register(struct sip_registry *r, int sipmethod, char *auth,
|
|
|
|
append_history(p, "RegistryInit", tmp);
|
|
|
|
append_history(p, "RegistryInit", tmp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* Find address to hostname */
|
|
|
|
/* Find address to hostname */
|
|
|
|
if (create_addr(p,r->hostname)) {
|
|
|
|
if (create_addr(p, r->hostname)) {
|
|
|
|
/* we have what we hope is a temporary network error,
|
|
|
|
/* we have what we hope is a temporary network error,
|
|
|
|
* probably DNS. We need to reschedule a registration try */
|
|
|
|
* probably DNS. We need to reschedule a registration try */
|
|
|
|
sip_destroy(p);
|
|
|
|
sip_destroy(p);
|
|
|
@ -10764,12 +10764,14 @@ static int handle_request(struct sip_pvt *p, struct sip_request *req, struct soc
|
|
|
|
ignore=1;
|
|
|
|
ignore=1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
extract_uri(p, req);
|
|
|
|
|
|
|
|
e = ast_skip_blanks(e);
|
|
|
|
e = ast_skip_blanks(e);
|
|
|
|
if (sscanf(e, "%d %n", &respid, &len) != 1) {
|
|
|
|
if (sscanf(e, "%d %n", &respid, &len) != 1) {
|
|
|
|
ast_log(LOG_WARNING, "Invalid response: '%s'\n", e);
|
|
|
|
ast_log(LOG_WARNING, "Invalid response: '%s'\n", e);
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
handle_response(p, respid, e + len, req,ignore, seqno);
|
|
|
|
/* More SIP ridiculousness, we have to ignore bogus contacts in 100 etc responses */
|
|
|
|
|
|
|
|
if ((respid == 200) || ((respid >= 300) && (respid <= 399)))
|
|
|
|
|
|
|
|
extract_uri(p, req);
|
|
|
|
|
|
|
|
handle_response(p, respid, e + len, req, ignore, seqno);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|