aboutsummaryrefslogtreecommitdiff
path: root/ares/CHANGES
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2007-05-30 12:58:47 +0000
committerDaniel Stenberg <daniel@haxx.se>2007-05-30 12:58:47 +0000
commit670273968ce2a8e648c61829d3304de23d91349d (patch)
tree9c30f3b95d44058e9a67fde10bf55f9943b76cc8 /ares/CHANGES
parentb6820b26745c819386be03d4150d5006ec33080c (diff)
added ares_process_fd() to allow applications to ask for processing on
specific sockets and thus avoiding select() and associated functions/macros. This function will be used by upcoming libcurl releases for this very reason. It also made me export the ares_socket_t type in the public ares.h header file, since ares_process_fd() uses that type for two of the arguments.
Diffstat (limited to 'ares/CHANGES')
-rw-r--r--ares/CHANGES10
1 files changed, 10 insertions, 0 deletions
diff --git a/ares/CHANGES b/ares/CHANGES
index b4580c773..3f607b880 100644
--- a/ares/CHANGES
+++ b/ares/CHANGES
@@ -1,6 +1,16 @@
Changelog for the c-ares project
+* May 30 2007
+
+- Daniel S added ares_process_fd() to allow applications to ask for processing
+ on specific sockets and thus avoiding select() and associated
+ functions/macros. This function will be used by upcoming libcurl releases
+ for this very reason. It also made me export the ares_socket_t type in the
+ public ares.h header file, since ares_process_fd() uses that type for two of
+ the arguments.
+
* May 25 2007
+
- Ravi Pratap fixed a flaw in the init_by_resolv_conf() function for windows
that could cause it to return a bad return code.