# | Line 822 | Line 822 | fd_nonblock(fd) | |
---|---|---|
822 | int fd; | |
823 | { | |
824 | #if defined USE_FIONBIO && defined FIONBIO | |
825 | < | int opt = 1; |
825 | > | ioctlsockopt_t opt = 1; |
826 | ||
827 | ioctlsocket(fd, FIONBIO, &opt); | |
828 | #else | |
# | Line 839 | Line 839 | fd_block(fd) | |
839 | int fd; | |
840 | { | |
841 | #if defined USE_FIONBIO && defined FIONBIO | |
842 | < | int opt = 0; |
842 | > | ioctlsockopt_t opt = 0; |
843 | ||
844 | ioctlsocket(fd, FIONBIO, &opt); | |
845 | #else |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |