X-Git-Url: https://the.earth.li/gitweb/?a=blobdiff_plain;f=gpgwww.c;h=fa8ea4f952eb8024003a547c9d6aa0a896f2f391;hb=9a96aa6edb1d8033124fe81b945c7e76f37d6087;hp=75022b86e83b5d74d1312c4fc161fc3968e91d92;hpb=4aafe74aea2d616a5d9611c6e3c01a182a0b37ec;p=onak.git diff --git a/gpgwww.c b/gpgwww.c index 75022b8..fa8ea4f 100644 --- a/gpgwww.c +++ b/gpgwww.c @@ -4,16 +4,19 @@ * Jonathan McDowell * * Copyright 2001-2002 Project Purple. + * + * $Id: gpgwww.c,v 1.13 2004/03/23 12:33:46 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,16 +56,30 @@ int main(int argc, char *argv[]) exit(1); } - printf("

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

\n", from, to); - 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); + 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; }