]> granicus.if.org Git - pdns/commitdiff
PYTHON FOLKS! kvresp.cc wants to become kvresp.py! s/dumresp/kvresp/, plus document...
authorbert hubert <bert.hubert@powerdns.com>
Tue, 27 Oct 2015 14:35:41 +0000 (15:35 +0100)
committerbert hubert <bert.hubert@powerdns.com>
Tue, 27 Oct 2015 14:37:08 +0000 (15:37 +0100)
pdns/kv-example-script.lua
pdns/kvresp.cc

index f55fbb98c810fedb88df5514607cd25f5cccde69..bbfcf60d20f584ee1de30f54c6b4a769a1d88453 100644 (file)
@@ -13,6 +13,8 @@ that needs to be called once the data is in.
 
 We'll add more parameters, like 'timeout' and perhaps 'protocol' as we improve this feature
 over time. 
+
+To test, use the 'kvresp' example program provided.
 --]]
 
 function preresolve ( remoteip, domain, qtype )
index 89ddeaebb69ca2ffc62cb4d4d9a50a232e3d1c77..63f4ad95e7358194be8339afa559aa69ff76bb15 100644 (file)
@@ -5,13 +5,17 @@
 #include "sstuff.hh"
 #include "statbag.hh"
 
+/* This tool REALLY wants to be rewritten in Python, by ahu does not speak it very well.
+   What it does is provide answers to queries from the Lua generic UDP Question/Answer
+   stuff in kv-example-script.lua */
+
 StatBag S;
 
 int main(int argc, char** argv)
 try
 {
   if(argc != 3) {
-    cerr<<"Syntax: dumresp local-address local-port"<<endl;
+    cerr<<"Syntax: kvresp local-address local-port"<<endl;
     exit(EXIT_FAILURE);
   }