Ignore:
Timestamp:
Sep 21, 2011 7:38:22 AM (13 years ago)
Author:
bennylp
Message:

Added option to control first re-registration retry interval. This closes #1375

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/branches/1.x/pjsip/include/pjsua-lib/pjsua.h

    r3594 r3762  
    25202520     * Specify interval of auto registration retry upon registration failure 
    25212521     * (including caused by transport problem), in second. Set to 0 to 
    2522      * disable auto re-registration. 
     2522     * disable auto re-registration. Note that if the registration retry 
     2523     * occurs because of transport failure, the first retry will be done 
     2524     * after \a reg_first_retry_interval seconds instead. Also note that 
     2525     * the interval will be randomized slightly by approximately +/- ten 
     2526     * seconds to avoid all clients re-registering at the same time. 
     2527     * 
     2528     * See also \a reg_first_retry_interval setting. 
    25232529     * 
    25242530     * Default: #PJSUA_REG_RETRY_INTERVAL 
    25252531     */ 
    25262532    unsigned         reg_retry_interval; 
     2533 
     2534    /** 
     2535     * This specifies the interval for the first registration retry. The 
     2536     * registration retry is explained in \a reg_retry_interval. Note that 
     2537     * the value here will also be randomized by +/- ten seconds. 
     2538     * 
     2539     * Default: 0 
     2540     */ 
     2541    unsigned         reg_first_retry_interval; 
    25272542 
    25282543    /** 
Note: See TracChangeset for help on using the changeset viewer.