]> the.earth.li Git - onak.git/blobdiff - gpgwww.c
cscvs to tla changeset 69
[onak.git] / gpgwww.c
index 75022b86e83b5d74d1312c4fc161fc3968e91d92..cd1c1004f0bf41029b3417975552f1420132e50a 100644 (file)
--- a/gpgwww.c
+++ b/gpgwww.c
@@ -14,6 +14,7 @@
 #include "getcgi.h"
 #include "hash.h"
 #include "keydb.h"
+#include "log.h"
 #include "onak-conf.h"
 #include "stats.h"
 
@@ -53,16 +54,30 @@ int main(int argc, char *argv[])
                exit(1);
        }
 
-       printf("<P>Looking for path from 0x%llX to 0x%llX</P>\n", from, to);
+       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();
+       initlogthing("gpgwww", config.logfile);
        initdb();
        inithash();
-       dofindpath(from, to, true);
+       dofindpath(from, to, true, 3);
        destroyhash();
        cleanupdb();
+       cleanuplogthing();
+       cleanupconfig();
 
        puts("<HR>");
-       puts("Produced by gpgwww " VERSION ", part of onak. <A HREF=\"mailto:noodles-onak@earth.li\">Jonathan McDowell</A>");
+       puts("Produced by gpgwww " VERSION ", part of onak. "
+               "<A HREF=\"mailto:noodles-onak@earth.li\">"
+               "Jonathan McDowell</A>");
        end_html();
 
+       cleanupcgi(cgiparams);
+       cgiparams = NULL;
+
        return EXIT_SUCCESS;
 }