diff options
author | Gerald Combs <gerald@wireshark.org> | 2008-08-07 21:41:48 +0000 |
---|---|---|
committer | Gerald Combs <gerald@wireshark.org> | 2008-08-07 21:41:48 +0000 |
commit | 021a926793686bcde277cbc7797c91b129befcb2 (patch) | |
tree | 5f4f4243098a27485a7cfafb8b317bb0eed0f83e /version_info.c | |
parent | 91407025b7f10e7e59b4311aaf4350ba39b35c2f (diff) | |
download | wireshark-021a926793686bcde277cbc7797c91b129befcb2.tar.gz wireshark-021a926793686bcde277cbc7797c91b129befcb2.tar.bz2 wireshark-021a926793686bcde277cbc7797c91b129befcb2.zip |
Add support for the c-ares asynchronous DNS resolution library to the
Windows build. Add support for async IPv6 lookups. Update the ADNS
code slightly.
This is not supported (yet) on the UNIX side.
svn path=/trunk/; revision=25953
Diffstat (limited to 'version_info.c')
-rw-r--r-- | version_info.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/version_info.c b/version_info.c index 2a20c69b36..459190b62e 100644 --- a/version_info.c +++ b/version_info.c @@ -216,6 +216,14 @@ get_epan_compiled_version_info(GString *str) g_string_append(str, "without SMI"); #endif /* _SMI_H */ + /* c-ares */ + g_string_append(str, ", "); +#ifdef HAVE_C_ARES + g_string_append(str, "with c-ares"); +#else + g_string_append(str, "without c-ares"); +#endif /* HAVE_C_ARES */ + /* ADNS */ g_string_append(str, ", "); #ifdef HAVE_GNU_ADNS |