Changeset 3906
- Timestamp:
- Dec 9, 2011 7:19:25 AM (13 years ago)
- Location:
- pjproject/branches/1.x
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/branches/1.x/pjmedia/src/pjmedia/transport_ice.c
r3745 r3906 403 403 * new ufrag/pwd pair. 404 404 */ 405 if (!restart_session && pj_ice_strans_sess_is_complete(tp_ice->ice_st)) { 405 if (!restart_session && pj_ice_strans_sess_is_complete(tp_ice->ice_st) && 406 pj_ice_strans_get_state(tp_ice->ice_st) != PJ_ICE_STRANS_STATE_FAILED) 407 { 406 408 const pj_ice_sess_check *check; 407 409 char *attr_buf; … … 533 535 } 534 536 535 } else if (pj_ice_strans_has_sess(tp_ice->ice_st)) { 537 } else if (pj_ice_strans_has_sess(tp_ice->ice_st) && 538 pj_ice_strans_get_state(tp_ice->ice_st) != 539 PJ_ICE_STRANS_STATE_FAILED) 540 { 536 541 /* Encode all candidates to SDP media */ 537 542 char *attr_buf; -
pjproject/branches/1.x/pjnath/src/pjnath/ice_strans.c
r3596 r3906 1164 1164 /* If ICE is available, send data with ICE, otherwise send with the 1165 1165 * default candidate selected during initialization. 1166 * 1167 * https://trac.pjsip.org/repos/ticket/1416: 1168 * Once ICE has failed, also send data with the default candidate. 1166 1169 */ 1167 if (ice_st->ice ) {1170 if (ice_st->ice && ice_st->state < PJ_ICE_STRANS_STATE_FAILED) { 1168 1171 if (comp->turn_sock) { 1169 1172 pj_turn_sock_lock(comp->turn_sock);
Note: See TracChangeset
for help on using the changeset viewer.