diff options
author | Yang Tse <yangsita@gmail.com> | 2008-11-13 18:56:56 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2008-11-13 18:56:56 +0000 |
commit | 65cafbe1095ade9d5632188a058f321372a77d55 (patch) | |
tree | f084326a306b57bc5385ee0c2799a49043bbe927 /config-win32.h | |
parent | 3c2da5eae185fd12354bb80b6fe9df8a7f274128 (diff) | |
download | c-ares-65cafbe1095ade9d5632188a058f321372a77d55.tar.gz c-ares-65cafbe1095ade9d5632188a058f321372a77d55.tar.bz2 c-ares-65cafbe1095ade9d5632188a058f321372a77d55.zip |
Refactor configure script detection of functions used to set sockets into
non-blocking mode, and decouple function detection from function capability.
Diffstat (limited to 'config-win32.h')
-rw-r--r-- | config-win32.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/config-win32.h b/config-win32.h index 9e8f10c..2245b03 100644 --- a/config-win32.h +++ b/config-win32.h @@ -76,9 +76,12 @@ /* FUNCTIONS */ /* ---------------------------------------------------------------- */ -/* Define if you have the ioctlsocket function. */ +/* Define if you have the ioctlsocket function. */ #define HAVE_IOCTLSOCKET 1 +/* Define if you have a working ioctlsocket FIONBIO function. */ +#define HAVE_IOCTLSOCKET_FIONBIO 1 + /* Define if you have the strcasecmp function. */ /* #define HAVE_STRCASECMP 1 */ |