- Timestamp:
- Sep 24, 2019 3:34:33 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjlib/src/pj/ioqueue_common_abs.c
r6003 r6077 1037 1037 "Send error for socket %d, retrying", 1038 1038 key->fd)); 1039 replace_udp_sock(key);1040 restart_retry = PJ_TRUE;1041 goto retry_on_restart;1042 } else {1043 status = PJ_ESOCKETSTOP;1039 status = replace_udp_sock(key); 1040 if (status == PJ_SUCCESS) { 1041 restart_retry = PJ_TRUE; 1042 goto retry_on_restart; 1043 } 1044 1044 } 1045 status = PJ_ESOCKETSTOP; 1045 1046 } 1046 1047 #endif 1047 1048 1048 return status; 1049 1049 }
Note: See TracChangeset
for help on using the changeset viewer.