X-Git-Url: https://git.sommitrealweird.co.uk/onak.git/blobdiff_plain/34b03028378025ad22c8d29f70e81109cee690c2..e3ac2630467e42937478a8e03dec83693912f9c4:/gpgwww.c diff --git a/gpgwww.c b/gpgwww.c index c225b82..6f8cbdd 100644 --- a/gpgwww.c +++ b/gpgwww.c @@ -4,16 +4,19 @@ * Jonathan McDowell * * Copyright 2001-2002 Project Purple. + * + * $Id: gpgwww.c,v 1.12 2003/10/15 21:15:20 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,13 +56,20 @@ int main(int argc, char *argv[]) exit(1); } - printf("

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

\n", from, to); - readconfig(); + 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(); inithash(); - dofindpath(from, to, true); + dofindpath(from, to, true, 3); destroyhash(); cleanupdb(); + cleanuplogthing(); cleanupconfig(); puts("
");