Ignore:
Timestamp:
Jan 11, 2017 7:29:46 AM (7 years ago)
Author:
nanang
Message:

Fixed #1990:

  • Added check for possibility of premature failure in pj_turn_sock_alloc() after pj_turn_session_set_server() returns PJ_SUCCESS.
  • Added more logs on ICE initialization progress for future debugging.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjmedia/src/pjmedia/transport_ice.c

    r5520 r5521  
    18371837    tp_ice = (struct transport_ice*) pj_ice_strans_get_user_data(ice_st); 
    18381838 
     1839    pj_perror(5, tp_ice->base.name, result, "ICE operation complete" 
     1840              " (op=%d%s)", op, 
     1841              (op==PJ_ICE_STRANS_OP_INIT? "/initialization" : 
     1842              (op==PJ_ICE_STRANS_OP_NEGOTIATION? "/negotiation":""))); 
     1843 
    18391844    /* Notify application */ 
    18401845    if (tp_ice->cb.on_ice_complete) 
Note: See TracChangeset for help on using the changeset viewer.