aboutsummaryrefslogtreecommitdiff
path: root/src/dht/dht_api.c
diff options
context:
space:
mode:
authorBart Polot <bart@net.in.tum.de>2012-01-05 20:00:45 +0000
committerBart Polot <bart@net.in.tum.de>2012-01-05 20:00:45 +0000
commitfca364b9a6259f8e802ca118d069eecacf625064 (patch)
treebe2aaa67805b79fa44e95d25ec34dae81aeb4675 /src/dht/dht_api.c
parentc84257c7030b727a09ac92b295f404077969ad0c (diff)
- Fixed some bugs in monitor code
Diffstat (limited to 'src/dht/dht_api.c')
-rw-r--r--src/dht/dht_api.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/dht/dht_api.c b/src/dht/dht_api.c
index a49af335bd..353620960c 100644
--- a/src/dht/dht_api.c
+++ b/src/dht/dht_api.c
@@ -634,7 +634,11 @@ service_message_handler (void *cls, const struct GNUNET_MessageHeader *msg)
if (ntohs (msg->type) != GNUNET_MESSAGE_TYPE_DHT_CLIENT_RESULT)
{
if (process_monitor_message (handle, msg) == GNUNET_OK)
+ {
+ GNUNET_CLIENT_receive (handle->client, &service_message_handler, handle,
+ GNUNET_TIME_UNIT_FOREVER_REL);
return;
+ }
GNUNET_break (0);
do_disconnect (handle);
return;
@@ -965,6 +969,7 @@ GNUNET_DHT_monitor_start (struct GNUNET_DHT_Handle *handle,
struct GNUNET_DHT_MonitorMessage *m;
struct PendingMessage *pending;
+ GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "monitor start\n");
h = GNUNET_malloc (sizeof (struct GNUNET_DHT_MonitorHandle));
GNUNET_CONTAINER_DLL_insert(handle->monitor_head, handle->monitor_tail, h);
@@ -985,6 +990,11 @@ GNUNET_DHT_monitor_start (struct GNUNET_DHT_Handle *handle,
pending->msg = &m->header;
pending->handle = handle;
pending->free_on_send = GNUNET_YES;
+ m->header.type = htons (GNUNET_MESSAGE_TYPE_DHT_MONITOR_GET);
+ m->header.size = htons (sizeof (struct GNUNET_DHT_MonitorMessage));
+ m->type = htonl(type);
+ if (NULL != key)
+ memcpy (&m->key, key, sizeof(GNUNET_HashCode));
GNUNET_CONTAINER_DLL_insert (handle->pending_head, handle->pending_tail,
pending);
pending->in_pending_queue = GNUNET_YES;