Changeset 4196
- Timestamp:
- Jul 5, 2012 7:02:50 AM (12 years ago)
- Location:
- pjproject/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjnath/include/pjnath/ice_session.h
r3553 r4196 620 620 pj_bool_t is_nominating; /**< Nominating stage */ 621 621 pj_bool_t is_complete; /**< Complete? */ 622 pj_bool_t is_destroying; /**< Destroy is called */ 622 623 pj_status_t ice_status; /**< Error status. */ 623 624 pj_timer_entry timer; /**< ICE timer. */ -
pjproject/trunk/pjnath/src/pjnath/ice_session.c
r3999 r4196 456 456 } 457 457 458 ice->is_destroying = PJ_TRUE; 459 458 460 /* Let other callbacks finish */ 459 461 if (ice->mutex) { … … 1841 1843 clist = td->clist; 1842 1844 1845 if (ice->is_destroying) 1846 return PJ_SUCCESS; 1847 1843 1848 pj_mutex_lock(ice->mutex); 1849 1850 if (ice->is_destroying) { 1851 pj_mutex_unlock(ice->mutex); 1852 return PJ_SUCCESS; 1853 } 1844 1854 1845 1855 /* Set timer ID to FALSE first */ -
pjproject/trunk/pjsip/src/pjsua-lib/pjsua_media.c
r4182 r4196 518 518 pjsua_call *call = NULL; 519 519 pjsip_dialog *dlg = NULL; 520 521 if (call_med->call == NULL) 522 return; 520 523 521 524 acquire_call("med_tp_timer_cb", call_med->call->index, &call, &dlg);
Note: See TracChangeset
for help on using the changeset viewer.