Changeset 4203 for pjproject/trunk
- Timestamp:
- Jul 12, 2012 6:39:36 AM (12 years ago)
- Location:
- pjproject/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjmedia/src/pjmedia/transport_ice.c
r3999 r4203 286 286 } 287 287 288 pj_ice_strans_stop_ice(tp_ice->ice_st); 288 if (tp_ice->ice_st) { 289 pj_ice_strans_stop_ice(tp_ice->ice_st); 290 } 289 291 290 292 tp_ice->use_ice = PJ_FALSE; -
pjproject/trunk/pjnath/src/pjnath/ice_strans.c
r4133 r4203 1146 1146 PJ_DEF(pj_status_t) pj_ice_strans_stop_ice(pj_ice_strans *ice_st) 1147 1147 { 1148 PJ_ASSERT_RETURN(ice_st, PJ_EINVAL); 1149 1148 1150 if (ice_st->ice) { 1149 1151 pj_ice_sess_destroy(ice_st->ice);
Note: See TracChangeset
for help on using the changeset viewer.