Ignore:
Timestamp:
Aug 11, 2009 12:42:38 PM (15 years ago)
Author:
nanang
Message:

Ticket #833:

  • Initial version of Session Timers (RFC 4028).
  • Added new options in pjsua app to configure Session Timers settings.
  • Added python tests for Session Timers.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/include/pjsip-ua/sip_inv.h

    r2647 r2858  
    306306    PJSIP_INV_REQUIRE_TIMER     = 64, 
    307307 
     308    /**   
     309     * Session timer extension will always be used even when peer doesn't 
     310     * support/want session timer. 
     311     */ 
     312    PJSIP_INV_ALWAYS_USE_TIMER  = 128, 
     313 
    308314}; 
    309315 
     316/* Forward declaration of Session Timers */ 
     317struct pjsip_timer; 
    310318 
    311319/** 
     
    332340    pj_int32_t           last_ack_cseq;             /**< CSeq of last ACK   */ 
    333341    void                *mod_data[PJSIP_MAX_MODULE];/**< Modules data.      */ 
     342    struct pjsip_timer  *timer;                     /**< Session Timers.    */ 
    334343}; 
    335344 
Note: See TracChangeset for help on using the changeset viewer.