1
0
mirror of https://github.com/signalwire/freeswitch.git synced 2025-03-04 17:51:03 +00:00

FS-3774 --resolve

This commit is contained in:
Anthony Minessale 2012-04-10 16:19:23 -05:00
parent 995ae2621c
commit 62c14df322
2 changed files with 6 additions and 4 deletions
libs/sofia-sip
.update
libsofia-sip-ua/nua

@ -1 +1 @@
Wed Apr 4 16:17:37 CDT 2012
Tue Apr 10 16:19:10 CDT 2012

@ -1212,10 +1212,12 @@ int nua_base_client_check_restart(nua_client_request_t *cr,
return 1;
}
}
if (0 && 500 <= status && status < 600 &&
/* GriGiu : RFC-3261 status supported Retry-After */
if ( (status == 404 || status == 413 || status == 480 || status == 486 ||
status == 500 || status == 503 ||
status == 600 || status == 603) &&
sip->sip_retry_after &&
sip->sip_retry_after->af_delta < 32) {
sip->sip_retry_after->af_delta < 3200) {
su_timer_t *timer;
char phrase[18]; /* Retry After XXXX\0 */