Changeset 5655
- Timestamp:
- Sep 20, 2017 5:04:25 AM (7 years ago)
- Location:
- pjproject/trunk/pjnath/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjnath/src/pjnath-test/ice_test.c
r5534 r5655 431 431 432 432 ept = (struct ice_ept*) pj_ice_strans_get_user_data(ice_st); 433 if (!ept) 434 return; 435 433 436 switch (op) { 434 437 case PJ_ICE_STRANS_OP_INIT: -
pjproject/trunk/pjnath/src/pjnath/ice_strans.c
r5636 r5655 1560 1560 pj_time_val t; 1561 1561 unsigned msec; 1562 pj_ice_strans_cb cb = ice_st->cb; 1562 1563 1563 1564 pj_grp_lock_add_ref(ice_st->grp_lock); … … 1567 1568 msec = PJ_TIME_VAL_MSEC(t); 1568 1569 1569 if ( ice_st->cb.on_ice_complete) {1570 if (cb.on_ice_complete) { 1570 1571 if (status != PJ_SUCCESS) { 1571 1572 char errmsg[PJ_ERR_MSG_SIZE]; … … 1640 1641 1641 1642 pj_log_push_indent(); 1642 (*ice_st->cb.on_ice_complete)(ice_st, PJ_ICE_STRANS_OP_NEGOTIATION, 1643 status); 1643 (*cb.on_ice_complete)(ice_st, PJ_ICE_STRANS_OP_NEGOTIATION, status); 1644 1644 pj_log_pop_indent(); 1645 1645
Note: See TracChangeset
for help on using the changeset viewer.