All Projects → c-ares → C Ares

c-ares / C Ares

Licence: other
A C library for asynchronous DNS requests

Programming Languages

c
50402 projects - #5 most used programming language

Projects that are alternatives of or similar to C Ares

Aiodnsbrute
Python 3.5+ DNS asynchronous brute force utility
Stars: ✭ 370 (-68.99%)
Mutual labels:  resolver, async, dns
Fasy
FP iterators that are both eager and asynchronous
Stars: ✭ 488 (-59.09%)
Mutual labels:  async, library
Dnsjava
The offical home of dnsjava - an implementation of the DNS protocol in Java.
Stars: ✭ 475 (-60.18%)
Mutual labels:  library, dns
Gitter Api
[production-ready] Gitter API implementation for php 7.0+ allowing sync, async and streaming access.
Stars: ✭ 11 (-99.08%)
Mutual labels:  async, library
Which Dns
Detects which DNS server is being used
Stars: ✭ 360 (-69.82%)
Mutual labels:  resolver, dns
Twisted
Event-driven networking engine written in Python.
Stars: ✭ 4,442 (+272.34%)
Mutual labels:  async, dns
Parallel Ssh
Asynchronous parallel SSH client library.
Stars: ✭ 864 (-27.58%)
Mutual labels:  async, library
solvere
A validating recursive DNS resolver library and standalone server with DNSSEC support
Stars: ✭ 32 (-97.32%)
Mutual labels:  resolver, dns
Handle Path Oz
Android Library to handle multiple Uri's(paths) received through Intents.
Stars: ✭ 36 (-96.98%)
Mutual labels:  async, library
Google Books Android Viewer
Android library to bridge between RecyclerView and sources like web page or database. Includes demonstrator (Google Books viewer)
Stars: ✭ 37 (-96.9%)
Mutual labels:  async, library
Domain
A DNS library for Rust
Stars: ✭ 37 (-96.9%)
Mutual labels:  resolver, dns
resolve
Command line iterative DNS resolution testing program
Stars: ✭ 17 (-98.58%)
Mutual labels:  resolver, dns
Aiodine
🧪 Async-first Python dependency injection library
Stars: ✭ 51 (-95.73%)
Mutual labels:  async, library
Tanya
GC-free, high-performance D library: Containers, networking, metaprogramming, memory management, utilities
Stars: ✭ 70 (-94.13%)
Mutual labels:  async, library
flareon
🦊A cloudflare DNS over HTTPs resolver client library.
Stars: ✭ 14 (-98.83%)
Mutual labels:  resolver, dns
Sdns
Privacy important, fast, recursive dns resolver server with dnssec support
Stars: ✭ 658 (-44.84%)
Mutual labels:  resolver, dns
Pyrogram
Telegram MTProto API Client Library and Framework in Pure Python for Users and Bots
Stars: ✭ 2,252 (+88.77%)
Mutual labels:  async, library
Asynquence
Asynchronous flow control (promises, generators, observables, CSP, etc)
Stars: ✭ 1,737 (+45.6%)
Mutual labels:  async, library
Restless
Express.js api, type safe validations and more
Stars: ✭ 32 (-97.32%)
Mutual labels:  async, library
Caf
Cancelable Async Flows (CAF)
Stars: ✭ 1,027 (-13.91%)
Mutual labels:  async, library

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: http://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: http://cool.haxx.se/mailman/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.haxx.se/

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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].