From: Jonathan McDowell <noodles@earth.li>
Date: Mon, 31 May 2004 23:48:17 +0000 (+0000)
Subject: cscvs to tla changeset 123
X-Git-Url: https://git.sommitrealweird.co.uk/onak.git/commitdiff_plain/2f81a42ec6952ef08a1a440d6044c75882158da0?hp=6afb1be70692774239e25ff9fb1083bedc714031

cscvs to tla changeset 123
Author: noodles
Date: 2004/05/26 18:53:14
Add logging for the various CGI interfaces.
---

diff --git a/add.c b/add.c
index f90dd88..2aba922 100644
--- a/add.c
+++ b/add.c
@@ -5,7 +5,7 @@
  *
  * Copyright 2002 Project Purple
  *
- * $Id: add.c,v 1.12 2004/03/23 12:33:46 noodles Exp $
+ * $Id: add.c,v 1.13 2004/05/26 18:53:14 noodles Exp $
  */
 
 #include <errno.h>
@@ -27,11 +27,12 @@
 
 int main(int argc, char *argv[])
 {
-	struct openpgp_packet_list *packets = NULL;
-	struct openpgp_publickey *keys = NULL;
-	char **params = NULL;
-	struct buffer_ctx ctx;
-	int i;
+	struct openpgp_packet_list  *packets = NULL;
+	struct openpgp_publickey    *keys = NULL;
+	char                       **params = NULL;
+	struct buffer_ctx            ctx;
+	int                          count = 0;
+	int                          i;
 
 	memset(&ctx, 0, sizeof(ctx));
 
@@ -64,8 +65,10 @@ int main(int argc, char *argv[])
 		if (packets != NULL) {
 			parse_keys(packets, &keys);
 			initdb(false);
-			printf("Got %d new keys.\n",
-					update_keys(&keys));
+			count = update_keys(&keys);
+			printf("Got %d new keys.\n", count);
+			logthing(LOGTHING_NOTICE, "Got %d new keys.",
+				count);
 			if (keys != NULL) {
 				sendkeysync(keys);
 				free_publickey(keys);
diff --git a/gpgwww.c b/gpgwww.c
index fa8ea4f..4668239 100644
--- a/gpgwww.c
+++ b/gpgwww.c
@@ -5,7 +5,7 @@
  *
  * Copyright 2001-2002 Project Purple.
  *
- * $Id: gpgwww.c,v 1.13 2004/03/23 12:33:46 noodles Exp $
+ * $Id: gpgwww.c,v 1.14 2004/05/26 18:53:14 noodles Exp $
  */
 
 #include <inttypes.h>
@@ -66,6 +66,9 @@ int main(int argc, char *argv[])
 	initlogthing("gpgwww", config.logfile);
 	initdb(true);
 	inithash();
+	logthing(LOGTHING_NOTICE, "Looking for path from 0x%llX to 0x%llX.",
+			from,
+			to);
 	dofindpath(from, to, true, 3);
 	destroyhash();
 	cleanupdb();
diff --git a/lookup.c b/lookup.c
index b824256..67eac59 100644
--- a/lookup.c
+++ b/lookup.c
@@ -5,7 +5,7 @@
  *
  * Copyright 2002 Project Purple
  *
- * $Id: lookup.c,v 1.13 2004/03/23 12:33:47 noodles Exp $
+ * $Id: lookup.c,v 1.14 2004/05/26 18:53:14 noodles Exp $
  */
 
 #include <inttypes.h>
@@ -151,6 +151,8 @@ int main(int argc, char *argv[])
 		initdb(true);
 		switch (op) {
 		case OP_GET:
+			logthing(LOGTHING_NOTICE, "Getting keyid %llX",
+					keyid);
 			if (fetch_key(keyid, &publickey, false)) {
 				puts("<pre>");
 				flatten_publickey(publickey,