Ignore:
Timestamp:
May 16, 2006 1:20:00 PM (18 years ago)
Author:
bennylp
Message:

Rearrange transaction statefull stuffs in SIP so that it will not be linked when transaction is disabled

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/src/pjsip/sip_transaction.c

    r315 r448  
    3838#define TSX_TRACE_(expr) 
    3939#endif 
     40 
     41 
     42/* Defined in sip_util_statefull.c */ 
     43extern pjsip_module mod_stateful_util; 
    4044 
    4145 
     
    466470    } 
    467471 
     472    /* Register mod_stateful_util module (sip_util_statefull.c) */ 
     473    status = pjsip_endpt_register_module(endpt, &mod_stateful_util); 
     474    if (status != PJ_SUCCESS) { 
     475        return status; 
     476    } 
     477 
    468478    return PJ_SUCCESS; 
    469479} 
Note: See TracChangeset for help on using the changeset viewer.