A C library for asynchronous DNS requests (grpc依赖)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
bradh352 c78754ff5a ares_strsplit* -> ares__strsplit* to comply with internal function naming 2 years ago
ci disable tests on ios 3 years ago
docs docs: reformat/cleanup man pages SYNOPSIS sections (#494) 2 years ago
include Configurable hosts path for file_lookup (#465) 3 years ago
m4 Fix Intel compiler deprecated options (#485) 2 years ago
src ares_strsplit* -> ares__strsplit* to comply with internal function naming 2 years ago
test ares_strsplit* -> ares__strsplit* to comply with internal function naming 2 years ago
.cirrus.yml Cirrus-CI: MacOS Homebrew has changed from /usr/local/opt to /opt/homebrew 2 years ago
.gitignore Git: ignore CMake temporary files (#480) 2 years ago
.travis.yml fix crash in tests 3 years ago
AUTHORS Avoid buffer overflow in RC4 loop comparison (#336) 4 years ago
CHANGES Avoid buffer overflow in RC4 loop comparison (#336) 4 years ago
CHANGES.0 Avoid buffer overflow in RC4 loop comparison (#336) 4 years ago
CMakeLists.txt If chain building c-ares as part of another project, detect of res_servicename could fail (#451) 3 years ago
CONTRIBUTING.md mailing list: moved to lists.haxx.se 3 years ago
GIT-INFO Avoid buffer overflow in RC4 loop comparison (#336) 4 years ago
INSTALL.md Add vcpkg installation instructions (#478) 2 years ago
LICENSE.md Avoid buffer overflow in RC4 loop comparison (#336) 4 years ago
Makefile.Watcom Avoid buffer overflow in RC4 loop comparison (#336) 4 years ago
Makefile.am attempt to fix 1.17.0 release distribution issues 4 years ago
Makefile.dj Fixes for Watt-32 on djgpp + Windows (#355) 4 years ago
Makefile.m32 RFC6761: special case "localhost" (#430) 3 years ago
Makefile.msvc RFC6761: special case "localhost" (#430) 3 years ago
Makefile.netware remove CURLDEBUG as per #82 4 years ago
NEWS Avoid buffer overflow in RC4 loop comparison (#336) 4 years ago
README.cares domain: update to use c-ares.org 3 years ago
README.md fix coveralls link 3 years ago
README.msvc remove stale information 4 years ago
RELEASE-NOTES 1.18.1 release prep 3 years ago
RELEASE-PROCEDURE.md domain: update to use c-ares.org 3 years ago
SECURITY.md domain: update to use c-ares.org 3 years ago
TODO Avoid buffer overflow in RC4 loop comparison (#336) 4 years ago
acinclude.m4 Avoid buffer overflow in RC4 loop comparison (#336) 4 years ago
appveyor.yml make building more verbose 3 years ago
buildconf autotools cleanup (#372) 4 years ago
buildconf.bat update path for include 4 years ago
c-ares-config.cmake.in CMake: Guard target creation in exported config (#464) 3 years ago
configure.ac configure.ac: fix STDC_HEADERS typo (#459) 3 years ago
get_ver.awk Avoid buffer overflow in RC4 loop comparison (#336) 4 years ago
git2changes.pl Avoid buffer overflow in RC4 loop comparison (#336) 4 years ago
libcares.pc.cmake Allow for CMake to use absolute install paths (#486) 2 years ago
libcares.pc.in libcares.pc.in: update the URL 3 years ago
maketgz Reorganize source tree (#349) 4 years ago
msvc_ver.inc Avoid buffer overflow in RC4 loop comparison (#336) 4 years ago

README.md

c-ares

Build Status Windows Build Status Coverage Status CII Best Practices Fuzzing Status Releases

This is c-ares, an asynchronous resolver library. It is intended for applications which need to perform DNS queries without blocking, or need to perform multiple DNS queries in parallel. The primary examples of such applications are servers which communicate with multiple clients and programs with graphical user interfaces.

The full source code is available in the 'c-ares' release archives, and in a git repository: https://github.com/c-ares/c-ares. See the INSTALL.md file for build information.

If you find bugs, correct flaws, have questions or have comments in general in regard to c-ares (or by all means the original ares too), get in touch with us on the c-ares mailing list: https://lists.haxx.se/listinfo/c-ares

c-ares is of course distributed under the same MIT-style license as the original ares.

You'll find all c-ares details and news here: https://c-ares.org/

Notes for c-ares hackers

  • The distributed ares_build.h file is only intended to be used on systems which can not run the also distributed configure script.

  • The distributed ares_build.h file is generated as a copy of ares_build.h.dist when the c-ares source code distribution archive file is originally created.

  • If you check out from git on a non-configure platform, you must run the appropriate buildconf* script to set up ares_build.h and other local files before being able to compile the library.

  • On systems capable of running the configure script, the configure process will overwrite the distributed ares_build.h file with one that is suitable and specific to the library being configured and built, this new file is generated from the ares_build.h.in template file.

  • If you intend to distribute an already compiled c-ares library you MUST also distribute along with it the generated ares_build.h which has been used to compile it. Otherwise the library will be of no use for the users of the library that you have built. It is your responsibility to provide this file. No one at the c-ares project can know how you have built the library.

  • File ares_build.h includes platform and configuration dependent info, and must not be modified by anyone. Configure script generates it for you.

  • We cannot assume anything else but very basic compiler features being present. While c-ares requires an ANSI C compiler to build, some of the earlier ANSI compilers clearly can't deal with some preprocessor operators.

  • Newlines must remain unix-style for older compilers' sake.

  • Comments must be written in the old-style /* unnested C-fashion */

  • Try to keep line lengths below 80 columns.