update the readmes

This commit is contained in:
Miek Gieben 2012-01-22 18:46:31 +01:00
parent 6d5fd7f975
commit 07c8dac67d
2 changed files with 8 additions and 8 deletions

View File

@ -9,12 +9,11 @@ implemented in the library.
Features:
* UDP/TCP queries, IPv4 and IPv6;
* Fast, reply speed should be around 30K qps. Parsing RR (from zonefiles)
goes with 25K RR/s.
This is expected to be optimized further.
* RFC 1035 zone file parsing.
* Fast, reply speed should be around 30K qps (Faster hardware, even more qps). Parsing RRs (zonefiles)
goes with 25K RR/s. This is expected to be optimized further.
* Client and server side programming (mimicking the http package);
* Asynchronous queries for client and server;
* RFC 1035 zone file parsing.
* DNSSEC;
* EDNS0;
* AXFR/IXFR;

View File

@ -6,8 +6,7 @@ things that need to be fixed.
* Parsing
* TXT record isn't parsed correctly, if followed by a comment
- Need to make " important in the parsing
* Speed, we can always go faster. A simple reflect server now hits 30K qps
* Speed, we can always go faster. A simple reflect server now hits 30/40K qps
* Add handy zone data structure (r/b tree)?
* Use the Exchange structure to deal with errors when resolving, esp. Timeout
* IsSubdomain, IsGlue helper functions;
@ -17,8 +16,10 @@ things that need to be fixed.
## BUGS
* NSEC3 record with no bitmap (empty non-terminals) are not correctly verified
* This means they are not correctly put in wirefmt also
* NSEC3 records with no bitmap (empty non-terminals) are not correctly verified
* This means they are not correctly put in wirefmt also;
* Not completely sure wildcard handling when verifying is correct;
*
## Examples to add