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.
 
 
 
 
 
Gunter Knauf 72beefe4f4 ares_getopt() command-line parser function does not belong to actual c-ares library. It is just a convinience source code helper function for use in example programs adig.c and ahost.c 18 years ago
vc ares_getopt() command-line parser function does not belong to actual 18 years ago
.cvsignore
AUTHORS
CHANGES ares_getopt() command-line parser function does not belong to actual 18 years ago
FILES
Makefile.am
Makefile.dj Added a hack to work around the circular dependency when 18 years ago
Makefile.inc ares_getopt() command-line parser function does not belong to actual 18 years ago
Makefile.m32
Makefile.netware ares_getopt() command-line parser function does not belong to actual c-ares library. It is just a convinience source code helper function for use in example programs adig.c and ahost.c 18 years ago
Makefile.vc6 ares_getopt() command-line parser function does not belong to actual 18 years ago
NEWS
README
README.cares
acinclude.m4 Cleanup. Warnings related with FD_SET, FD_ISSET, and FD_ZERO macros 18 years ago
adig.c ares_getopt() command-line parser function does not belong to actual 18 years ago
ahost.c ares_getopt() command-line parser function does not belong to actual 18 years ago
ares.h ares_getopt() command-line parser function does not belong to actual 18 years ago
ares__close_sockets.c
ares__get_hostent.c Removed inclusion of <sys/types.h> in .c-files 18 years ago
ares__read_line.c
ares_cancel.3
ares_cancel.c
ares_destroy.3
ares_destroy.c
ares_dns.h
ares_expand_name.3
ares_expand_name.c Removed inclusion of <sys/types.h> in .c-files 18 years ago
ares_expand_string.3
ares_expand_string.c Removed inclusion of <sys/types.h> in .c-files 18 years ago
ares_fds.3
ares_fds.c Removed inclusion of <sys/types.h> in .c-files 18 years ago
ares_free_hostent.3
ares_free_hostent.c
ares_free_string.3
ares_free_string.c
ares_gethostbyaddr.3
ares_gethostbyaddr.c Removed inclusion of <sys/types.h> in .c-files 18 years ago
ares_gethostbyname.3
ares_gethostbyname.c Removed inclusion of <sys/types.h> in .c-files 18 years ago
ares_getnameinfo.3
ares_getnameinfo.c Removed inclusion of <sys/types.h> in .c-files 18 years ago
ares_getopt.c ares_getopt() command-line parser function does not belong to actual 18 years ago
ares_getopt.h ares_getopt() command-line parser function does not belong to actual 18 years ago
ares_getsock.3
ares_getsock.c update copyright year 18 years ago
ares_init.3
ares_init.c Removed inclusion of <sys/types.h> in .c-files 18 years ago
ares_init_options.3
ares_ipv6.h
ares_mkquery.3
ares_mkquery.c Removed inclusion of <sys/types.h> in .c-files 18 years ago
ares_parse_a_reply.3
ares_parse_a_reply.c Removed inclusion of <sys/types.h> in .c-files 18 years ago
ares_parse_aaaa_reply.3
ares_parse_aaaa_reply.c Removed inclusion of <sys/types.h> in .c-files 18 years ago
ares_parse_ns_reply.3
ares_parse_ns_reply.c Removed inclusion of <sys/types.h> in .c-files 18 years ago
ares_parse_ptr_reply.3
ares_parse_ptr_reply.c Removed inclusion of <sys/types.h> in .c-files 18 years ago
ares_private.h
ares_process.3
ares_process.c Removed inclusion of <sys/types.h> in .c-files 18 years ago
ares_query.3
ares_query.c Removed inclusion of <sys/types.h> in .c-files 18 years ago
ares_search.3
ares_search.c
ares_send.3
ares_send.c Removed inclusion of <sys/types.h> in .c-files 18 years ago
ares_strerror.3
ares_strerror.c
ares_timeout.3
ares_timeout.c Removed inclusion of <sys/types.h> in .c-files 18 years ago
ares_version.3
ares_version.c
ares_version.h
bitncmp.c Removed inclusion of <sys/types.h> in .c-files 18 years ago
bitncmp.h
buildconf
config-win32.h
configure.ac show better description for AMD64-linux static libraries PIC check 18 years ago
inet_net_pton.c Removed inclusion of <sys/types.h> in .c-files 18 years ago
inet_net_pton.h
inet_ntop.c Removed inclusion of <sys/types.h> in .c-files 18 years ago
inet_ntop.h
install-sh
maketgz
mkinstalldirs
nameser.h
setup.h
setup_once.h convenience SIG_ATOMIC_T macro definition 18 years ago
windows_port.c

README

This is c-ares, a forked version of the original ares. The original ares
README follows below, the c-ares specific details are in README.cares

====================================================================

This is 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.

This library implementation is not especially portable to crufty old
systems like SunOS 4. It assumes a compiler which can handle ANSI C
syntax, a system malloc which properly handles realloc(NULL, foo) and
free(NULL), and a reasonably up-to-date <arpa/nameser.h>.

I have attempted to preserve the externally visible behavior of the
BIND resolver in nearly all respects. The API of the library is, of
course, very different from the synchronous BIND API; instead of
invoking a function like res_send() and getting a return value back
indicating the number of bytes in the response, you invoke a function
like ares_send() and give it a callback function to invoke when the
response arrives. You then have to select() on the file descriptors
indicated by ares_fds(), with a timeout given by ares_timeout(). You
call ares_process() when select() returns.

Some features are missing from the current version of ares, relative
to the BIND resolver:

* There is no IPV6 support.
* There is no hostname verification.
* There is no logging of unexpected events.
* There is no debugging-oriented logging.
* There is no YP support.

libares requires an ANSI compiler to compile and use. To build the
library, just run "./configure" and "make". To install it, run "make
install". Run "./configure --help" to see a list of options you can
provide to configure to change how the library builds. libares has no
data files, so you can move the include file and library around freely
without leaving behind any dependencies on old paths. Building the
library will also build the "adig" program, a little toy for trying
out the library. It doesn't get installed.

libares is distributed at athena-dist.mit.edu:pub/ATHENA/ares. Please
send bug reports and comments to ghudson@mit.edu.