]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
do not retry so fast on failed outbound subs
authorAnthony Minessale <anthm@freeswitch.org>
Fri, 14 Mar 2014 17:55:50 +0000 (12:55 -0500)
committerAnthony Minessale <anthm@freeswitch.org>
Fri, 14 Mar 2014 17:55:50 +0000 (12:55 -0500)
src/mod/endpoints/mod_sofia/mod_sofia.h
src/mod/endpoints/mod_sofia/sofia_presence.c
src/mod/endpoints/mod_sofia/sofia_reg.c

index f8877bd31f351b0985a67bfb67c444a748d3c010..14446458591b62bc532c309aa5954a329315680c 100644 (file)
@@ -424,6 +424,7 @@ typedef enum {
        SUB_STATE_SUBED,
        SUB_STATE_UNSUBSCRIBE,
        SUB_STATE_FAILED,
+       SUB_STATE_FAIL_WAIT,
        SUB_STATE_EXPIRED,
        SUB_STATE_NOSUB,
        v_STATE_LAST
index b00284df32deadd437560fbc3da7616207ebf847..09b18f7c5d42e0d22e2f1b7e9609febb83ee2c2b 100644 (file)
@@ -4372,8 +4372,6 @@ void sofia_presence_handle_sip_r_subscribe(int status,
        default:
                switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "status (%d) != 200, updated state to SUB_STATE_FAILED.\n", status);
                gw_sub_ptr->state = SUB_STATE_FAILED;
-               gw_sub_ptr->expires = switch_epoch_time_now(NULL);
-               gw_sub_ptr->retry = switch_epoch_time_now(NULL);
 
                if (!sofia_private) {
                        nua_handle_destroy(nh);
index 5bb86ba3bc3a20faa99c3c85bc7e920a698c580e..f089e23829a1897f07ae73c5cfc648a32f063ee2 100644 (file)
@@ -253,6 +253,15 @@ void sofia_sub_check_gateway(sofia_profile_t *profile, time_t now)
                                break;
 
                        case SUB_STATE_FAILED:
+                               gw_sub_ptr->expires = now;
+                               gw_sub_ptr->retry = now + gw_sub_ptr->retry_seconds;
+                               gw_sub_ptr->state = SUB_STATE_FAIL_WAIT;
+                               break;
+                       case SUB_STATE_FAIL_WAIT:
+                               if (!gw_sub_ptr->retry || now >= gw_sub_ptr->retry) {
+                                       gw_sub_ptr->state = SUB_STATE_UNSUBED;
+                               }
+                               break;
                        case SUB_STATE_TRYING:
                                if (gw_sub_ptr->retry && now >= gw_sub_ptr->retry) {
                                        gw_sub_ptr->state = SUB_STATE_UNSUBED;