Ignore:
Timestamp:
Mar 10, 2010 1:33:25 PM (14 years ago)
Author:
bennylp
Message:

More #1032 (new SIP TCP/TLS transport callback):

  • PJSUA-LIB transport callback, if installed, will call the previously registered callback, to allow multiple transport callbacks to be installed
  • there seem to be a bug with the use of "pjsip_tp_state_callback" everywhere (the "pjsip_tp_state_callback" type is pointer, but most variables of this type are declared to pointer too)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/include/pjsip/sip_transport.h

    r3110 r3119  
    13131313 */ 
    13141314PJ_DECL(pj_status_t) pjsip_tpmgr_set_status_cb(pjsip_tpmgr *mgr, 
    1315                                                pjsip_tp_state_callback *cb); 
     1315                                               pjsip_tp_state_callback cb); 
    13161316 
    13171317 
     
    13231323 * @return          The transport state callback or NULL if it is not set. 
    13241324 */ 
    1325 PJ_DECL(pjsip_tp_state_callback*) pjsip_tpmgr_get_status_cb( 
     1325PJ_DECL(pjsip_tp_state_callback) pjsip_tpmgr_get_status_cb( 
    13261326                                               const pjsip_tpmgr *mgr); 
    13271327 
Note: See TracChangeset for help on using the changeset viewer.