From 07c8dac67d413287a74b3e279150b09e477501e3 Mon Sep 17 00:00:00 2001 From: Miek Gieben Date: Sun, 22 Jan 2012 18:46:31 +0100 Subject: [PATCH] update the readmes --- README.markdown | 7 +++---- TODO.markdown | 9 +++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.markdown b/README.markdown index 9cc09621..c1c5bf60 100644 --- a/README.markdown +++ b/README.markdown @@ -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; diff --git a/TODO.markdown b/TODO.markdown index 4fa2fb08..811d51d9 100644 --- a/TODO.markdown +++ b/TODO.markdown @@ -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