Go to file
Glen Wiley 68ae437210 Merge branch 'develop' of https://github.com/verisign/getdns into develop
Conflicts:
	src/common/Makefile
2013-07-30 17:43:39 -04:00
doc added proposed cache design 2013-07-18 12:02:04 -04:00
src Merge branch 'develop' of https://github.com/verisign/getdns into develop 2013-07-30 17:43:39 -04:00
.gitignore might be helpful to have a common .gitignore 2013-07-28 17:33:48 -08:00
AUTHORS Moving things around to run configure at top level of directory tree 2013-07-30 11:55:09 -08:00
COPYING Moving things around to run configure at top level of directory tree 2013-07-30 11:55:09 -08:00
INSTALL Moving things around to run configure at top level of directory tree 2013-07-30 11:55:09 -08:00
LICENSE Captured project goals and direction in README.md, added MIT license 2013-06-24 14:10:42 -04:00
Makefile.in Moving things around to run configure at top level of directory tree 2013-07-30 11:55:09 -08:00
NEWS Moving things around to run configure at top level of directory tree 2013-07-30 11:55:09 -08:00
README Moving things around to run configure at top level of directory tree 2013-07-30 11:55:09 -08:00
README.md list data type partially implemented, unit test framework started 2013-07-19 16:19:22 -04:00
configure Moving things around to run configure at top level of directory tree 2013-07-30 11:55:09 -08:00
configure.ac Moving things around to run configure at top level of directory tree 2013-07-30 11:55:09 -08:00

README.md

getdns API

getdns is a modern asynchronous DNS API intended to make all types of DNS information easily available as described by Paul Hoffman. This implementation is licensed under the MIT license.

This file captures the goals and direction of the project and the current state of the implementation.

The goals of this implementation of the getdns API are:

  • Provide an open source implementation, in C, of the formally described getdns API by Paul Hoffman at http://www.vpnc.org/getdns-api/
  • Initial support for FreeBSD x.y, MS-Windows Ver. X, OSX 10.x, Linux (CentOS/RHEL R6uX, Ubuntu Ver X) via functional "configure" script
  • Initial support to include the Android platform
  • Include examples and tests as part of the build
  • Document code using doxygen
  • Leverage github as much as possible for project coordination
  • Coding style/standards follow the BSD coding style ftp://ftp.netbsd.org/pub/NetBSD/NetBSD-current/src/share/misc/style
  • Follow the git flow branching model described at http://nvie.com/posts/a-successful-git-branching-model/ ** 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
  • Both synchronous and asynchronous entry points with an early focus on the asynchronous model

Non-goals (things we will not be doing) include:

  • implementation of the traditional DNS related routines (gethostbyname, etc.)

Contributors

  • Neel Goyal, Verisign, Inc.
  • Allison Mankin, Verisign, Inc.
  • Melinda Shore, No Mountain Software LLC
  • Glen Wiley, Verisign, Inc.

External Dependencies

External dependencies are linked outside the getdns API build tree (we rely on configure to find them).

The project relies on libldns from NL for parsing and constructing DNS packets. Version 1.6.16 (note that building ldns may require openssl headers and libraries)

Although libevent 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

Doxygen is used to generate documentation, while this is not technically necessary for the build it makes things a lot more pleasant.

GNU autoconf is used to generate the configure script (and consequently the Makefiles)

Current State of the Implementation

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

-- end README