X-Git-Url: https://the.earth.li/gitweb/?a=blobdiff_plain;f=gpgwww.c;h=4668239bb3334347cbcf7be8c933a1e662a6346a;hb=ec10586ae774074490665d5baeef8488861904ee;hp=bb8a446cd4be840df0be7c8119ae56776478f3cc;hpb=42bcfe2cae29f375af4cf2cd3ccfa196b77a3946;p=onak.git diff --git a/gpgwww.c b/gpgwww.c index bb8a446..4668239 100644 --- a/gpgwww.c +++ b/gpgwww.c @@ -4,16 +4,19 @@ * Jonathan McDowell * * Copyright 2001-2002 Project Purple. + * + * $Id: gpgwww.c,v 1.14 2004/05/26 18:53:14 noodles Exp $ */ -// #include #include #include #include +#include #include "getcgi.h" #include "hash.h" #include "keydb.h" +#include "log.h" #include "onak-conf.h" #include "stats.h" @@ -53,17 +56,33 @@ int main(int argc, char *argv[]) exit(1); } - printf("

Looking for path from 0x%llX to 0x%llX

\n", from, to); - readconfig(); - initdb(); + printf("

Looking for path from 0x%llX to 0x%llX.\n", from, to); + printf("" + "Find reverse path

\n", + to, + from); + + readconfig(NULL); + initlogthing("gpgwww", config.logfile); + 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(); + cleanupconfig(); puts("
"); - puts("Produced by gpgwww " VERSION ", part of onak. Jonathan McDowell"); + puts("Produced by gpgwww " VERSION ", part of onak. " + "" + "Jonathan McDowell"); end_html(); + cleanupcgi(cgiparams); + cgiparams = NULL; + return EXIT_SUCCESS; }