Changeset 3119 for pjproject/trunk/pjsip/src/pjsip/sip_transport.c
- Timestamp:
- Mar 10, 2010 1:33:25 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/src/pjsip/sip_transport.c
r3110 r3119 90 90 void (*on_rx_msg)(pjsip_endpoint*, pj_status_t, pjsip_rx_data*); 91 91 pj_status_t (*on_tx_msg)(pjsip_endpoint*, pjsip_tx_data*); 92 pjsip_tp_state_callback *tp_state_cb;92 pjsip_tp_state_callback tp_state_cb; 93 93 void *tp_state_user_data; 94 94 }; … … 1739 1739 1740 1740 PJ_DEF(pj_status_t) pjsip_tpmgr_set_status_cb(pjsip_tpmgr *mgr, 1741 pjsip_tp_state_callback *cb)1741 pjsip_tp_state_callback cb) 1742 1742 { 1743 1743 PJ_ASSERT_RETURN(mgr, PJ_EINVAL); … … 1748 1748 } 1749 1749 1750 PJ_DEF(pjsip_tp_state_callback *) pjsip_tpmgr_get_status_cb(1750 PJ_DEF(pjsip_tp_state_callback) pjsip_tpmgr_get_status_cb( 1751 1751 const pjsip_tpmgr *mgr) 1752 1752 {
Note: See TracChangeset
for help on using the changeset viewer.