The D Programming Language



const uint  FD_SETSIZE;

Default  FD_SETSIZE value. In C/C++, it is redefinable by #define-ing the macro before #include-ing winsock.h. In D, use the FD_CREATE function to allocate a fd_set of an arbitrary size.


fd_set*  FD_CREATE(uint capacity);

Creates a new fd_set with the specified capacity.