Changeset 5342 for pjproject/trunk/pjnath/src/pjnath/ice_strans.c
- Timestamp:
- Jun 13, 2016 7:11:41 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjnath/src/pjnath/ice_strans.c
r5340 r5342 675 675 for (i=0; i<ice_st->cfg.stun_tp_cnt; ++i) { 676 676 status = add_stun_and_host(ice_st, comp, i); 677 if (status != PJ_SUCCESS) 678 return status; 677 if (status != PJ_SUCCESS) { 678 PJ_PERROR(3,(ice_st->obj_name, status, 679 "Failed creating STUN transport #%d for comp %d", 680 i, comp->comp_id)); 681 //return status; 682 } 679 683 } 680 684 … … 682 686 for (i=0; i<ice_st->cfg.turn_tp_cnt; ++i) { 683 687 status = add_update_turn(ice_st, comp, i); 684 if (status != PJ_SUCCESS) 685 return status; 688 if (status != PJ_SUCCESS) { 689 PJ_PERROR(3,(ice_st->obj_name, status, 690 "Failed creating TURN transport #%d for comp %d", 691 i, comp->comp_id)); 692 //return status; 693 } 686 694 } 687 695
Note: See TracChangeset
for help on using the changeset viewer.