Ignore:
Timestamp:
Dec 9, 2011 7:19:25 AM (12 years ago)
Author:
bennylp
Message:

Fixed #1416: Allow application to send data after ICE negotiation fails

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/branches/1.x/pjnath/src/pjnath/ice_strans.c

    r3596 r3906  
    11641164    /* If ICE is available, send data with ICE, otherwise send with the 
    11651165     * 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. 
    11661169     */ 
    1167     if (ice_st->ice) { 
     1170    if (ice_st->ice && ice_st->state < PJ_ICE_STRANS_STATE_FAILED) { 
    11681171        if (comp->turn_sock) { 
    11691172            pj_turn_sock_lock(comp->turn_sock); 
Note: See TracChangeset for help on using the changeset viewer.