summaryrefslogtreecommitdiff
path: root/src/namestore/gnunet-service-namestore.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-09-30 09:18:59 +0000
committerChristian Grothoff <christian@grothoff.org>2013-09-30 09:18:59 +0000
commit3056a8d79ddf74b3b3097455323fd5bb531bd87f (patch)
treea485278f8a256704a6b96fd90ab5d345aac986c2 /src/namestore/gnunet-service-namestore.c
parentfeebaa1b4e5236d837d7f9e55562426b70fadf5a (diff)
downloadgnunet-3056a8d79ddf74b3b3097455323fd5bb531bd87f.tar.gz
gnunet-3056a8d79ddf74b3b3097455323fd5bb531bd87f.zip
-more logging
Diffstat (limited to 'src/namestore/gnunet-service-namestore.c')
-rw-r--r--src/namestore/gnunet-service-namestore.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/namestore/gnunet-service-namestore.c b/src/namestore/gnunet-service-namestore.c
index 266af5a20..ea5ad6cd0 100644
--- a/src/namestore/gnunet-service-namestore.c
+++ b/src/namestore/gnunet-service-namestore.c
@@ -422,6 +422,9 @@ handle_lookup_block (void *cls,
422 if (0 == ret) 422 if (0 == ret)
423 { 423 {
424 /* no records match at all, generate empty response */ 424 /* no records match at all, generate empty response */
425 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
426 "Sending empty `%s' message\n",
427 "NAMESTORE_LOOKUP_BLOCK_RESPONSE");
425 memset (&zir_end, 0, sizeof (zir_end)); 428 memset (&zir_end, 0, sizeof (zir_end));
426 zir_end.gns_header.header.type = htons (GNUNET_MESSAGE_TYPE_NAMESTORE_LOOKUP_BLOCK_RESPONSE); 429 zir_end.gns_header.header.type = htons (GNUNET_MESSAGE_TYPE_NAMESTORE_LOOKUP_BLOCK_RESPONSE);
427 zir_end.gns_header.header.size = htons (sizeof (struct LookupBlockResponseMessage)); 430 zir_end.gns_header.header.size = htons (sizeof (struct LookupBlockResponseMessage));
@@ -467,7 +470,6 @@ handle_block_cache (void *cls,
467 } 470 }
468 rp_msg = (const struct BlockCacheMessage *) message; 471 rp_msg = (const struct BlockCacheMessage *) message;
469 esize = ntohs (rp_msg->gns_header.header.size) - sizeof (struct BlockCacheMessage); 472 esize = ntohs (rp_msg->gns_header.header.size) - sizeof (struct BlockCacheMessage);
470
471 block = GNUNET_malloc (sizeof (struct GNUNET_NAMESTORE_Block) + esize); 473 block = GNUNET_malloc (sizeof (struct GNUNET_NAMESTORE_Block) + esize);
472 block->signature = rp_msg->signature; 474 block->signature = rp_msg->signature;
473 block->derived_key = rp_msg->derived_key; 475 block->derived_key = rp_msg->derived_key;
@@ -537,8 +539,9 @@ send_lookup_response (struct GNUNET_SERVER_NotificationContext *nc,
537 rd_ser = &name_tmp[name_len]; 539 rd_ser = &name_tmp[name_len];
538 GNUNET_NAMESTORE_records_serialize (rd_count, rd, rd_ser_len, rd_ser); 540 GNUNET_NAMESTORE_records_serialize (rd_count, rd, rd_ser_len, rd_ser);
539 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 541 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
540 "Sending `%s' message with size %u\n", 542 "Sending `%s' message with %u records and size %u\n",
541 "RECORD_RESULT", 543 "RECORD_RESULT",
544 rd_count,
542 msg_size); 545 msg_size);
543 GNUNET_SERVER_notification_context_unicast (nc, 546 GNUNET_SERVER_notification_context_unicast (nc,
544 client, 547 client,
@@ -651,7 +654,7 @@ handle_record_store (void *cls,
651 res = GSN_database->store_records (GSN_database->cls, 654 res = GSN_database->store_records (GSN_database->cls,
652 &rp_msg->private_key, 655 &rp_msg->private_key,
653 conv_name, 656 conv_name,
654 rd_count, rd); 657 rd_count, rd);
655 if (GNUNET_OK == res) 658 if (GNUNET_OK == res)
656 { 659 {
657 struct ZoneMonitor *zm; 660 struct ZoneMonitor *zm;