start working on 1.7.1
This commit is contained in:
parent
a72ce23f16
commit
d61690ef46
@ -1,5 +1,7 @@
|
|||||||
Changelog for the c-ares project
|
Changelog for the c-ares project
|
||||||
|
|
||||||
|
Version 1.7.0 (Nov 30, 2009)
|
||||||
|
|
||||||
* November 26, 2009 (Yang Tse)
|
* November 26, 2009 (Yang Tse)
|
||||||
- Larry Lansing fixed ares_parse_srv_reply to properly parse replies
|
- Larry Lansing fixed ares_parse_srv_reply to properly parse replies
|
||||||
which might contain non-SRV answers, skipping over potential non-SRV
|
which might contain non-SRV answers, skipping over potential non-SRV
|
||||||
|
@ -1,36 +1,15 @@
|
|||||||
This is what's new and changed in the c-ares 1.7.0 release:
|
This is what's new and changed in the c-ares 1.7.1 release:
|
||||||
|
|
||||||
Changed:
|
Changed:
|
||||||
|
|
||||||
o in6_addr is not used in ares.h anymore, but a private ares_in6_addr is
|
o
|
||||||
instead declared and used
|
|
||||||
o ares_gethostbyname() now supports 'AF_UNSPEC' as a family for resolving
|
|
||||||
either AF_INET6 or AF_INET
|
|
||||||
o a build-time configured ares_socklen_t is now used instead of socklen_t
|
|
||||||
o new ares_library_init() and ares_library_cleanup() functions
|
|
||||||
o new --enable-curldebug configure option
|
|
||||||
o ARES_ECANCELLED is now sent as reason for ares_cancel()
|
|
||||||
o added ares_parse_srv_reply()
|
|
||||||
o added ares_parse_txt_reply()
|
|
||||||
o added ares_free_data()
|
|
||||||
o new --enable-symbol-hiding configure option
|
|
||||||
o new Makefile.msvc for any MSVC compiler or MS Visual Studio version
|
|
||||||
o addrttl and addr6ttl structs renamed to ares_addrttl and ares_addr6ttl
|
|
||||||
o naming convention for libraries built with MSVC, see README.msvc
|
|
||||||
|
|
||||||
Fixed:
|
Fixed:
|
||||||
|
|
||||||
o ares_parse_*_reply() functions now return ARES_EBADRESP instead of
|
o
|
||||||
ARES_EBADNAME if the name in the response failed to decode
|
|
||||||
o only expose/export symbols starting with 'ares_'
|
|
||||||
o fix \Device\TCP handle leaks triggered by buggy iphlpapi.dll
|
|
||||||
o init without internet gone no longer fails
|
|
||||||
o out of bounds memory overwrite triggered with malformed /etc/hosts file
|
|
||||||
o function prototypes in man pages out of sync with ares.h
|
|
||||||
|
|
||||||
Thanks go to these friendly people for their efforts and contributions:
|
Thanks go to these friendly people for their efforts and contributions:
|
||||||
|
|
||||||
Phil Blundell, Japheth Cleaver, Yang Tse, Gregor Jasny, Joshua Kwan,
|
|
||||||
Timo Teras, Jakub Hrozek, John Engelhart, Larry Lansing
|
|
||||||
|
|
||||||
Have fun!
|
Have fun!
|
||||||
|
@ -5,11 +5,11 @@
|
|||||||
|
|
||||||
#define ARES_VERSION_MAJOR 1
|
#define ARES_VERSION_MAJOR 1
|
||||||
#define ARES_VERSION_MINOR 7
|
#define ARES_VERSION_MINOR 7
|
||||||
#define ARES_VERSION_PATCH 0
|
#define ARES_VERSION_PATCH 1
|
||||||
#define ARES_VERSION ((ARES_VERSION_MAJOR<<16)|\
|
#define ARES_VERSION ((ARES_VERSION_MAJOR<<16)|\
|
||||||
(ARES_VERSION_MINOR<<8)|\
|
(ARES_VERSION_MINOR<<8)|\
|
||||||
(ARES_VERSION_PATCH))
|
(ARES_VERSION_PATCH))
|
||||||
#define ARES_VERSION_STR "1.7.0-CVS"
|
#define ARES_VERSION_STR "1.7.1-CVS"
|
||||||
|
|
||||||
#if (ARES_VERSION >= 0x010700)
|
#if (ARES_VERSION >= 0x010700)
|
||||||
# define CARES_HAVE_ARES_LIBRARY_INIT 1
|
# define CARES_HAVE_ARES_LIBRARY_INIT 1
|
||||||
|
Loading…
x
Reference in New Issue
Block a user