]> the.earth.li Git - onak.git/blobdiff - gpgwww.c
cscvs to tla changeset 140
[onak.git] / gpgwww.c
index f5b16448de0f4591318631bda69dd9c093b19976..4668239bb3334347cbcf7be8c933a1e662a6346a 100644 (file)
--- a/gpgwww.c
+++ b/gpgwww.c
@@ -4,12 +4,14 @@
  * Jonathan McDowell <noodles@earth.li>
  *
  * Copyright 2001-2002 Project Purple.
+ *
+ * $Id: gpgwww.c,v 1.14 2004/05/26 18:53:14 noodles Exp $
  */
 
-// #include <stdint.h>
 #include <inttypes.h>
 #include <stdio.h>
 #include <stdlib.h>
+#include <string.h>
 
 #include "getcgi.h"
 #include "hash.h"
@@ -54,12 +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();
+       initdb(true);
        inithash();
-       dofindpath(from, to, true);
+       logthing(LOGTHING_NOTICE, "Looking for path from 0x%llX to 0x%llX.",
+                       from,
+                       to);
+       dofindpath(from, to, true, 3);
        destroyhash();
        cleanupdb();
        cleanuplogthing();