Changeset 1548 for pjproject/trunk
- Timestamp:
- Nov 4, 2007 3:55:17 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjnath/src/pjnath/ice_strans.c
r1503 r1548 1128 1128 comp->pending_cnt--; 1129 1129 1130 if (status != PJ_SUCCESS) { 1130 if (status == PJNATH_ESTUNTIMEDOUT) { 1131 1132 PJ_LOG(4,(comp->ice_st->obj_name, 1133 "STUN Binding request has timed-out, will retry " 1134 "again alter")); 1135 1136 /* Restart keep-alive timer */ 1137 start_ka_timer(comp->ice_st); 1138 return; 1139 1140 } else if (status != PJ_SUCCESS) { 1131 1141 comp->last_status = cand->status = status; 1132 1142 ice_st_perror(comp->ice_st, "STUN Binding request failed", … … 1165 1175 } 1166 1176 1167 PJ_LOG( 4,(comp->ice_st->obj_name,1177 PJ_LOG(5,(comp->ice_st->obj_name, 1168 1178 "STUN mapped address for %s:%d is %s:%d", 1169 1179 ip, (int)pj_ntohs(comp->local_addr.ipv4.sin_port),
Note: See TracChangeset
for help on using the changeset viewer.