diff options
author | Christian Grothoff <christian@grothoff.org> | 2016-06-23 16:30:45 +0000 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2016-06-23 16:30:45 +0000 |
commit | 021e5d47b4ac2fd2088cee65e551fd7e6114e99b (patch) | |
tree | 703829ff172d75f5417e42041ed4694a53d10e71 /src/cadet/gnunet-service-cadet_dht.c | |
parent | c1bac2613d2e7915ab23c3675918aa839514bd97 (diff) |
convert DHT API to new MQ API
Diffstat (limited to 'src/cadet/gnunet-service-cadet_dht.c')
-rw-r--r-- | src/cadet/gnunet-service-cadet_dht.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/cadet/gnunet-service-cadet_dht.c b/src/cadet/gnunet-service-cadet_dht.c index 88a601b52..da9bf7604 100644 --- a/src/cadet/gnunet-service-cadet_dht.c +++ b/src/cadet/gnunet-service-cadet_dht.c @@ -214,7 +214,6 @@ announce_id (void *cls) const struct GNUNET_HELLO_Message *hello; size_t size; struct GNUNET_TIME_Absolute expiration; - struct GNUNET_TIME_Relative retry_time; announce_id_task = NULL; LOG (GNUNET_ERROR_TYPE_DEBUG, "Announce ID\n"); @@ -235,7 +234,6 @@ announce_id (void *cls) return; } expiration = GNUNET_HELLO_get_last_expiration (hello); - retry_time = GNUNET_TIME_absolute_get_remaining (expiration); LOG (GNUNET_ERROR_TYPE_DEBUG, "Hello %p size: %u\n", hello, size); GNUNET_STATISTICS_update (stats, "# DHT announce", @@ -251,7 +249,6 @@ announce_id (void *cls) size, /* Size of the data */ (const char *) hello, /* Data itself */ expiration, /* Data expiration */ - retry_time, /* Retry time */ NULL, /* Continuation */ NULL); /* Continuation closure */ announce_id_task = |