Changeset 5196 for pjproject/trunk/pjlib/src/pj/ioqueue_select.c
- Timestamp:
- Nov 6, 2015 11:36:06 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjlib/src/pj/ioqueue_select.c
r5194 r5196 339 339 * an fd that is higher than FD_SETSIZE. 340 340 */ 341 if (sizeof(fd_set) < FD_SETSIZE && sock >= PJ_IOQUEUE_MAX_HANDLES) 342 return PJ_ETOOBIG; 341 if (sizeof(fd_set) < FD_SETSIZE && sock >= FD_SETSIZE) { 342 PJ_LOG(4, ("pjlib", "Failed to register socket to ioqueue because " 343 "socket fd is too big (fd=%d/FD_SETSIZE=%d)", 344 sock, FD_SETSIZE)); 345 return PJ_ETOOBIG; 346 } 343 347 344 348 pj_lock_acquire(ioqueue->lock);
Note: See TracChangeset
for help on using the changeset viewer.