cscvs to tla changeset 112
[onak.git] / gpgwww.c
index c225b827c90e095176e4d473b0a1fec9d82d0cd7..6f8cbdd36df0486cfc8134176c8642511a25a6da 100644 (file)
--- a/gpgwww.c
+++ b/gpgwww.c
@@ -4,16 +4,19 @@
  * Jonathan McDowell <noodles@earth.li>
  *
  * Copyright 2001-2002 Project Purple.
+ *
+ * $Id: gpgwww.c,v 1.12 2003/10/15 21:15:20 noodles Exp $
  */
 
-// #include <stdint.h>
 #include <inttypes.h>
 #include <stdio.h>
 #include <stdlib.h>
+#include <string.h>
 
 #include "getcgi.h"
 #include "hash.h"
 #include "keydb.h"
+#include "log.h"
 #include "onak-conf.h"
 #include "stats.h"
 
@@ -53,13 +56,20 @@ int main(int argc, char *argv[])
                exit(1);
        }
 
-       printf("<P>Looking for path from 0x%llX to 0x%llX</P>\n", from, to);
-       readconfig();
+       printf("<P>Looking for path from 0x%llX to 0x%llX.\n", from, to);
+       printf("<A HREF=\"gpgwww?from=0x%08llX&to=0x%08llX\">"
+                       "Find reverse path</A></P>\n",
+                       to,
+                       from);
+
+       readconfig(NULL);
+       initlogthing("gpgwww", config.logfile);
        initdb();
        inithash();
-       dofindpath(from, to, true);
+       dofindpath(from, to, true, 3);
        destroyhash();
        cleanupdb();
+       cleanuplogthing();
        cleanupconfig();
 
        puts("<HR>");