2013-10-09 18:52:31 -05:00
getdns API {#mainpage}
2013-06-24 13:10:42 -05:00
==========
2013-06-11 07:37:29 -05:00
2013-06-30 22:36:46 -05:00
* Date: 2013-06-27
2013-06-24 13:10:42 -05:00
* GitHub: < https: // github . com / verisign / getdns >
2013-06-11 07:51:35 -05:00
2013-09-11 17:41:23 -05:00
getdns is a [modern asynchronous DNS API ](http://www.vpnc.org/getdns-api/ ) intended to make all types of DNS information easily available as described by Paul Hoffman. This implementation is licensed under the New BSD License (BSD-new).
The [getdns-api mailing list ](http://www.vpnc.org/mailman/listinfo/getdns-api ) is a good place to engage in discussions regarding the design of the API.
2013-06-24 13:10:42 -05:00
2013-06-30 22:36:46 -05:00
This file captures the goals and direction of the project and the current state of the implementation.
2013-06-24 13:10:42 -05:00
2013-07-02 16:00:20 -05:00
The goals of this implementation of the getdns API are:
2013-06-24 13:10:42 -05:00
2013-07-02 16:00:20 -05:00
* Provide an open source implementation, in C, of the formally described getdns API by Paul Hoffman at < http: // www . vpnc . org / getdns-api />
2013-06-24 13:10:42 -05:00
* Initial support for FreeBSD x.y, MS-Windows Ver. X, OSX 10.x, Linux (CentOS/RHEL R6uX, Ubuntu Ver X) via functional "configure" script
2013-06-28 07:44:23 -05:00
* Initial support to include the Android platform
2013-06-24 13:10:42 -05:00
* Include examples and tests as part of the build
* Document code using doxygen
* Leverage github as much as possible for project coordination
2013-07-19 15:19:22 -05:00
* Coding style/standards follow the BSD coding style < ftp: // ftp . netbsd . org / pub / NetBSD / NetBSD-current / src / share / misc / style >
2013-06-24 13:10:42 -05:00
* Follow the git flow branching model described at < http: // nvie . com / posts / a-successful-git-branching-model />
2013-06-29 11:57:57 -05:00
** the master branch is always in a production ready state
** the develop branch contains the latest development changes which are merged from develop into master once they are considered production ready
2013-06-24 13:10:42 -05:00
* Both synchronous and asynchronous entry points with an early focus on the asynchronous model
2013-07-02 16:00:20 -05:00
Non-goals (things we will not be doing) include:
* implementation of the traditional DNS related routines (gethostbyname, etc.)
2013-06-24 13:10:42 -05:00
Contributors
============
2013-07-19 15:19:22 -05:00
* Neel Goyal, Verisign, Inc.
* Allison Mankin, Verisign, Inc.
* Melinda Shore, No Mountain Software LLC
* Glen Wiley, Verisign, Inc.
2013-06-24 13:10:42 -05:00
External Dependencies
=====================
External dependencies are linked outside the getdns API build tree (we rely on configure to find them).
2013-06-30 22:36:46 -05:00
The project relies on [libldns from NL ](https://www.nlnetlabs.nl/projects/ldns/ ) for parsing and constructing DNS packets. Version 1.6.16 (note that building ldns may require openssl headers and libraries)
2013-06-24 13:10:42 -05:00
Although [libevent ](http://libevent.org ) is used initially to implement the asynchronous model, future work may include a move to other mechanisms (epoll based etc.). Version 2.0.21 stable
2013-07-02 16:00:20 -05:00
Doxygen is used to generate documentation, while this is not technically necessary for the build it makes things a lot more pleasant.
2013-07-19 15:19:22 -05:00
GNU autoconf is used to generate the configure script (and consequently the Makefiles)
2013-08-30 13:19:03 -05:00
Automake 1.12 is required if you are building the distribution tarball.
2013-06-24 13:10:42 -05:00
Current State of the Implementation
===================================
2013-06-28 10:09:10 -05:00
We are currently in the early stages of building the API so the code should be considered incomplete. The current target platforms and the personal primarily responsible for ensuring it builds and runs on that platform include:
* Android, Neel Goyal
* FreeBSD, Melinda Shore
* Linux RHEL/CentOS 6.x, Glen Wiley
* MS-Windows 8, Neel Goyal
* OSX 10.8, Glen Wiley
2013-06-24 13:10:42 -05:00
--
end README