Ignore:
Timestamp:
Feb 8, 2008 9:43:30 AM (16 years ago)
Author:
bennylp
Message:

Fixed compilation errors on Symbian and others caused by ticket #472 (FD_SETSIZE was removed)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib/src/pj/sock_select_symbian.cpp

    r1235 r1785  
    2727{ 
    2828    unsigned     count; 
    29     CPjSocket   *sock[FD_SETSIZE]; 
     29    CPjSocket   *sock[PJ_IOQUEUE_MAX_HANDLES]; 
    3030}; 
    3131 
     
    4242    symbian_fd_set *fds = (symbian_fd_set *)fdsetp; 
    4343 
    44     PJ_ASSERT_ON_FAIL(fds->count < FD_SETSIZE, return); 
     44    PJ_ASSERT_ON_FAIL(fds->count < PJ_IOQUEUE_MAX_HANDLES, return); 
    4545    fds->sock[fds->count++] = (CPjSocket*)fd; 
    4646} 
Note: See TracChangeset for help on using the changeset viewer.