Changeset 5282
- Timestamp:
- May 9, 2016 3:29:28 AM (9 years ago)
- Location:
- pjproject/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjnath/include/pjnath/ice_strans.h
r4606 r5282 126 126 PJ_ICE_STRANS_OP_NEGOTIATION, 127 127 128 /** This operati nois used to report failure in keep-alive operation.128 /** This operation is used to report failure in keep-alive operation. 129 129 * Currently it is only used to report TURN Refresh failure. 130 130 */ 131 PJ_ICE_STRANS_OP_KEEP_ALIVE 131 PJ_ICE_STRANS_OP_KEEP_ALIVE, 132 133 /** IP address change notification from STUN keep-alive operation. 134 */ 135 PJ_ICE_STRANS_OP_ADDR_CHANGE 132 136 133 137 } pj_ice_strans_op; -
pjproject/trunk/pjnath/src/pjnath/ice_strans.c
r5215 r5282 1641 1641 1642 1642 sess_init_update(ice_st); 1643 1644 if (op == PJ_STUN_SOCK_MAPPED_ADDR_CHANGE && 1645 ice_st->cb.on_ice_complete) 1646 { 1647 (*ice_st->cb.on_ice_complete)(ice_st, 1648 PJ_ICE_STRANS_OP_ADDR_CHANGE, 1649 status); 1650 } 1643 1651 } 1644 1652 } -
pjproject/trunk/pjsip/src/pjsua-lib/pjsua_media.c
r5217 r5282 680 680 break; 681 681 case PJ_ICE_STRANS_OP_KEEP_ALIVE: 682 case PJ_ICE_STRANS_OP_ADDR_CHANGE: 682 683 if (result != PJ_SUCCESS) { 683 684 PJ_PERROR(4,(THIS_FILE, result, … … 696 697 call->index, &info); 697 698 } 698 if (pjsua_var.ua_cfg.cb.on_ice_transport_error) { 699 if (pjsua_var.ua_cfg.cb.on_ice_transport_error && 700 op == PJ_ICE_STRANS_OP_KEEP_ALIVE) 701 { 699 702 pjsua_call_id id = call->index; 700 703 (*pjsua_var.ua_cfg.cb.on_ice_transport_error)(id, op, result,
Note: See TracChangeset
for help on using the changeset viewer.