Update the readme

This commit is contained in:
Miek Gieben 2012-01-11 22:01:40 +01:00
parent 399ea1579c
commit 1bac1ee4b9
2 changed files with 7 additions and 9 deletions

View File

@ -1,9 +1,10 @@
# Alternative (more granular) approach to a DNS library. # Alternative (more granular) approach to a DNS library.
Completely usable DNS library. Most widely used Resource Records are Completely usable DNS library. Most widely used Resource Records are
supported including DNSSEC types. It follows a lean and mean philosophy. supported including the DNSSEC types. It follows a lean and mean philosophy.
If there is stuff you should know as a DNS programmers there isn't a convenience If there is stuff you should know as a DNS programmer there isn't a convenience
function for it. function for it. For instance I'm pondering if a zone-like structure should be
implemented in the library.
Features: Features:
@ -11,19 +12,17 @@ Features:
* TSIG; * TSIG;
* EDNS0; * EDNS0;
* AXFR/IXFR; * AXFR/IXFR;
* DNS name compression;
* Client and server side programming (mimicking the http package); * Client and server side programming (mimicking the http package);
* Asynchronous queries for client and server; * Asynchronous queries for client and server;
* RFC 1035 zone file parsing (everything, except multiline records work). * RFC 1035 zone file parsing.
non-working ATM.
Sample programs can be found in the `_examples` directory. They can Sample programs can be found in the `_examples` directory. They can
be build with: `make examples` (after the dns package has been installed) be build with: `make examples` (after the dns package has been installed)
Everything else should be present and working. If not, drop me an email.
Have fun! Have fun!
Miek Gieben - 2010, 2011 - miek@miek.nl Miek Gieben - 2010-2012 - miek@miek.nl
## Supported RFCs and features include: ## Supported RFCs and features include:

View File

@ -14,7 +14,6 @@ things that need to be fixed.
## Issues ## Issues
* Check the network order, it works now, but this is on Intel? * Check the network order, it works now, but this is on Intel?
* Compression. Take stuff from Jan Mercl.
## Examples to create ## Examples to create