- Timestamp:
- Jun 25, 2009 12:31:52 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/branches/1.0/pjlib/src/pj/ioqueue_select.c
r2394 r2806 728 728 /* Scan for readable socket. */ 729 729 if ((key_has_pending_read(h) || key_has_pending_accept(h)) 730 && PJ_FD_ISSET(h->fd, &rfdset) && !IS_CLOSING(h)) 730 && PJ_FD_ISSET(h->fd, &rfdset) && !IS_CLOSING(h) && 731 counter<count) 731 732 { 732 733 #if PJ_IOQUEUE_HAS_SAFE_UNREG … … 740 741 #if PJ_HAS_TCP 741 742 if (key_has_pending_connect(h) && PJ_FD_ISSET(h->fd, &xfdset) && 742 !IS_CLOSING(h) )743 !IS_CLOSING(h) && counter<count) 743 744 { 744 745 #if PJ_IOQUEUE_HAS_SAFE_UNREG
Note: See TracChangeset
for help on using the changeset viewer.