Changeset 5737 for pjproject/trunk/pjlib/src/pj/ioqueue_common_abs.c
- Timestamp:
- Feb 15, 2018 1:57:11 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjlib/src/pj/ioqueue_common_abs.c
r5692 r5737 344 344 "Send error for socket %d, retrying", 345 345 h->fd)); 346 replace_udp_sock(h);346 send_rc = replace_udp_sock(h); 347 347 continue; 348 348 } … … 579 579 h->fd_type==pj_SOCK_DGRAM()) 580 580 { 581 replace_udp_sock(h); 581 rc = replace_udp_sock(h); 582 if (rc != PJ_SUCCESS) { 583 bytes_read = -rc; 584 } 582 585 } 583 586 #endif
Note: See TracChangeset
for help on using the changeset viewer.