summaryrefslogtreecommitdiff
path: root/deps/cares/src/NEWS
diff options
context:
space:
mode:
authorBert Belder <bertbelder@gmail.com>2012-08-06 21:27:47 +0200
committerBert Belder <bertbelder@gmail.com>2012-08-07 01:49:02 +0200
commit81791ff33cc5413b7711c957406635ed780d0b4e (patch)
tree1158e2ee76b926e6f3b4c58f439737597139b1fa /deps/cares/src/NEWS
parent4c150ca0d0cc4bd8dc6d182e0bf850daf27a2422 (diff)
downloadandroid-node-v8-81791ff33cc5413b7711c957406635ed780d0b4e.tar.gz
android-node-v8-81791ff33cc5413b7711c957406635ed780d0b4e.tar.bz2
android-node-v8-81791ff33cc5413b7711c957406635ed780d0b4e.zip
Add c-ares dependency
This is the c-ares code that used to live in the libuv source tree. It is based on c-ares 1.9.0.
Diffstat (limited to 'deps/cares/src/NEWS')
-rw-r--r--deps/cares/src/NEWS21
1 files changed, 21 insertions, 0 deletions
diff --git a/deps/cares/src/NEWS b/deps/cares/src/NEWS
new file mode 100644
index 0000000000..95a2eeea27
--- /dev/null
+++ b/deps/cares/src/NEWS
@@ -0,0 +1,21 @@
+Major changes since:
+* see the CHANGES file
+
+Major changes in release 1.1.1:
+* ares should now compile as C++ code (no longer uses reserved word
+ "class").
+* Added SRV support to adig test program.
+* Fixed a few error handling bugs in query processing.
+
+Major changes in release 1.1.0:
+* Added ares_free_string() function so that memory can be freed in the
+ same layer as it is allocated, a desirable feature in some
+ environments.
+* A few of the ares_dns.h macros are fixed to use the proper bitwise
+ operator.
+* Fixed a couple of fenceposts fixed in ares_expand_name()'s
+ bounds-checking.
+* In process_timeouts(), extract query->next before calling
+ next_server() and possibly freeing the query structure.
+* Casted arguments to ctype macros casted to unsigned char, since not
+ all char values are valid inputs to those macros according to ANSI.