Daniel Stenberg
d2f21d37b1
ares_reinit()
...
- To allow an app to force a re-read of /etc/resolv.conf etc, pretty much
like the res_init() resolver function offers
15 years ago
Daniel Stenberg
8b6f71ce95
- Tommie Gannert pointed out a silly bug in ares_process_fd() since it didn't
...
check for broken connections like ares_process() did. Based on that, I
merged the two functions into a single generic one with two front-ends.
15 years ago
Yang Tse
004c2e3400
VMS specific preprocessor symbol checking adjustments
15 years ago
Yang Tse
92dcb407d6
Mention last changes
15 years ago
Yang Tse
58d9b0c1bd
- Fix configure_socket() to use ares_socket_t instead of int data type.
15 years ago
Yang Tse
bb3f003b83
- Where run-time error checks enabling compiler option /GZ was used it is now
...
replaced with equivalent /RTCsu for Visual Studio 2003 and newer versions.
- Compiler option /GX is now replaced with equivalent /EHsc for all versions.
15 years ago
Yang Tse
c2d3f7986b
- Ingmar Runge noticed that Windows config-win32.h configuration file
...
did not include a definition for HAVE_CLOSESOCKET which resulted in
function close() being inappropriately used to close sockets.
15 years ago
Daniel Stenberg
df279b133c
start working on 1.7.1
15 years ago
Yang Tse
103dec073e
Preserve empty line following last target
15 years ago
Yang Tse
57e48c4cf1
- Larry Lansing fixed ares_parse_srv_reply to properly parse replies
...
which might contain non-SRV answers, skipping over potential non-SRV
ones such as CNAMEs.
15 years ago
Yang Tse
4bc98ca85c
When using icc, compile with -fpic and link with intel dynamic libraries.
15 years ago
Yang Tse
85df26919c
Added 'currently' in italics to insist on transient situation.
15 years ago
Yang Tse
6eb75a6c53
Fix language
15 years ago
Yang Tse
612a29311a
Daniel wants upcoming release to be 1.7.0
15 years ago
Yang Tse
dc4528e672
Mention last changes
15 years ago
Yang Tse
1479db32aa
- Removed from external interface preprocessor symbol definition for
...
CARES_HAVE_ARES_FREE_DATA. Current functionality of ares_free_data()
makes it unnecessary.
15 years ago
Yang Tse
004e6510ae
Added README.msvc
15 years ago
Yang Tse
9084888dca
Changed c-ares naming conventions when using MSVC as described in README.msvc
15 years ago
Yang Tse
96d3205622
- Mention other recent changes
15 years ago
Yang Tse
36b26039ac
- Jakub Hrozek renamed addrttl and addr6ttl structs to ares_addrttl and
...
ares_addr6ttl in order to prevent name space pollution, along with
necessary changes to code base and man pages.This change does not break
ABI, there is no need to recompile existing applications. But existing
applications using these structs with the old name will need source code
adjustments when recompiled using c-ares 1.6.1.
15 years ago
Yang Tse
497afa9acb
- Jakub Hrozek fixed more function prototypes in man pages to sync them
...
with the ones declared in ares.h
15 years ago
Yang Tse
17e6785e05
Make configure remove the ares_build.h file included in distribution tarballs.
15 years ago
Yang Tse
912857c6f3
Fix macro redefinition.
15 years ago
Yang Tse
c1f141596e
Fix name space pollution.
15 years ago
Yang Tse
ff90f9dc28
Allow using different extra import libraries for debug and release builds.
15 years ago
Yang Tse
29e173dcff
Add manifest stuff to msvc makefile
15 years ago
Yang Tse
f854ecb90b
Sync man page with reality
15 years ago
Yang Tse
7a7befd37b
Add missing external API decoration for ares_set_socket_callback()
15 years ago
Yang Tse
d1151affce
Add ares_free_data() man page.
15 years ago
Yang Tse
dbd45c1539
- Provide in external interface preprocessor symbol definitions for
...
CARES_HAVE_ARES_FREE_DATA as an indication of function availability.
15 years ago
Yang Tse
f2cdd32a4f
Remove typecast
15 years ago
Yang Tse
09aadd57e6
Fix comment
15 years ago
Yang Tse
3e66eb8702
Add ares_data.c and ares_data.h
15 years ago
Yang Tse
5d62fe703f
Jakub Hrozek modified ares_parse_srv_reply() and ares_parse_txt_reply() API
...
to return a linked lists of results. These were also modified to internally
use the ares_data memory struct and as such its result must be free'ed with
ares_free_data().
15 years ago
Yang Tse
2a916ce6e5
Initial support for the generic ares_free_data() function that will allow
...
applications to free memory allocated and returned by some c-ares funtions.
15 years ago
Yang Tse
10461d1414
Make usage of calloc()'s arguments consistent with rest of code base
15 years ago
Yang Tse
f157b574a9
workaround icc 9.1 optimizer issue
15 years ago
Yang Tse
cf38264e2a
Add icc fvisibility bug test
15 years ago
Yang Tse
b47af62e75
Fix icc 9.0 compiler warning: external definition with no prior declaration
15 years ago
Yang Tse
c4ee4a5d21
Fix three var names
15 years ago
Yang Tse
61e686b65f
Add check for assert.h header file
15 years ago
Yang Tse
afa62136a5
getaddrinfo is fully thread safe on solaris versions which
...
15 years ago
Yang Tse
e6c2fe9f75
Remove files generated on previous buildconf/configure run
15 years ago
Yang Tse
3bf689197b
Remove enable-thread / disable-thread configure option. These were only placebo
...
15 years ago
Yang Tse
e43ac04a1f
Refactor how preprocessor symbol _THREAD_SAFE definition is done.
15 years ago
Yang Tse
ccabe949dd
Assume that getaddrinfo is thread safe, unless hard coded
...
knowledge says the contrary or h_errno is not defined.
15 years ago
Yang Tse
3d2e078f2b
Related with the threadsafe capability of getaddrinfo:
...
- Constantine Sapuntzakis reported that Darwin 6.0 a.k.a. MAC OS X 10.2
and newer have a threadsafe getaddrinfo.
- Fix Dragonfly BSD triplet detection.
- In case the hard-coded knowledge says that getaddrinfo is threadsafe,
an additional check is done to verify that h_errno is also defined.
If h_errno isn't defined, we finally assume that it isn't threadsafe.
Jamie Lokier provided the inspiration for this extra check.
15 years ago
Yang Tse
f5b37120f3
AIX 5.2 and newer have threadsafe getaddrinfo.
...
Add some comments to better understand what the regex's pretend to achieve.
15 years ago
Yang Tse
f084328b48
HP-UX 11.11 and later have threadsafe getaddrinfo
15 years ago
Yang Tse
109c17b680
Check if getaddrinfo is threadsafe when function check allows it to be used
15 years ago