[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[GNUnet-SVN] [gnunet] branch master updated: active_put is no longer, DC
From: |
gnunet |
Subject: |
[GNUnet-SVN] [gnunet] branch master updated: active_put is no longer, DCE |
Date: |
Sun, 06 May 2018 21:45:48 +0200 |
This is an automated email from the git hooks/post-receive script.
grothoff pushed a commit to branch master
in repository gnunet.
The following commit(s) were added to refs/heads/master by this push:
new 27cbd6cf7 active_put is no longer, DCE
27cbd6cf7 is described below
commit 27cbd6cf7afaeb663f77331f6bba79d312dd9105
Author: Christian Grothoff <address@hidden>
AuthorDate: Sun May 6 21:45:06 2018 +0200
active_put is no longer, DCE
---
src/zonemaster/gnunet-service-zonemaster.c | 22 ++--------------------
1 file changed, 2 insertions(+), 20 deletions(-)
diff --git a/src/zonemaster/gnunet-service-zonemaster.c
b/src/zonemaster/gnunet-service-zonemaster.c
index cbb890589..8220e6eab 100644
--- a/src/zonemaster/gnunet-service-zonemaster.c
+++ b/src/zonemaster/gnunet-service-zonemaster.c
@@ -138,11 +138,6 @@ static struct GNUNET_STATISTICS_Handle *statistics;
static struct GNUNET_DHT_Handle *dht_handle;
/**
- * Active DHT put operation (or NULL)
- */
-static struct GNUNET_DHT_PutHandle *active_put;
-
-/**
* Our handle to the namestore service
*/
static struct GNUNET_NAMESTORE_Handle *namestore_handle;
@@ -289,6 +284,7 @@ shutdown_task (void *cls)
while (NULL != (ma = ma_head))
{
GNUNET_DHT_put_cancel (ma->ph);
+ ma_queue_length--;
GNUNET_CONTAINER_DLL_remove (ma_head,
ma_tail,
ma);
@@ -297,6 +293,7 @@ shutdown_task (void *cls)
while (NULL != (ma = it_head))
{
GNUNET_DHT_put_cancel (ma->ph);
+ dht_queue_length--;
GNUNET_CONTAINER_DLL_remove (it_head,
it_tail,
ma);
@@ -329,11 +326,6 @@ shutdown_task (void *cls)
GNUNET_NAMESTORE_disconnect (namestore_handle);
namestore_handle = NULL;
}
- if (NULL != active_put)
- {
- GNUNET_DHT_put_cancel (active_put);
- active_put = NULL;
- }
if (NULL != dht_handle)
{
GNUNET_DHT_disconnect (dht_handle);
@@ -732,11 +724,6 @@ zone_iteration_error (void *cls)
GNUNET_SCHEDULER_cancel (zone_publish_task);
zone_publish_task = NULL;
}
- if (NULL != active_put)
- {
- GNUNET_DHT_put_cancel (active_put);
- active_put = NULL;
- }
zone_publish_task = GNUNET_SCHEDULER_add_now (&publish_zone_dht_start,
NULL);
}
@@ -1016,11 +1003,6 @@ handle_monitor_error (void *cls)
GNUNET_NAMESTORE_zone_iteration_stop (namestore_iter);
namestore_iter = NULL;
}
- if (NULL != active_put)
- {
- GNUNET_DHT_put_cancel (active_put);
- active_put = NULL;
- }
zone_publish_task = GNUNET_SCHEDULER_add_now (&publish_zone_dht_start,
NULL);
}
--
To stop receiving notification emails like this one, please contact
address@hidden
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [GNUnet-SVN] [gnunet] branch master updated: active_put is no longer, DCE,
gnunet <=