From 42763e19c771aa332a2a2307ad05f45a3da87dd0 Mon Sep 17 00:00:00 2001 From: Willow Liquorice Date: Sun, 12 Jun 2022 20:30:40 +0100 Subject: [PATCH] Doxygen: First redundant comment stripping results --- src/cadet/gnunet-service-cadet_dht.c | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/src/cadet/gnunet-service-cadet_dht.c b/src/cadet/gnunet-service-cadet_dht.c index d44a50f506..ff057efdc1 100644 --- a/src/cadet/gnunet-service-cadet_dht.c +++ b/src/cadet/gnunet-service-cadet_dht.c @@ -55,9 +55,6 @@ #define LOG(level, ...) GNUNET_log_from (level, "cadet-dht", __VA_ARGS__) -/** - * Handle for DHT searches. - */ struct GCD_search_handle { /** @@ -212,10 +209,6 @@ announce_id (void *cls) } -/** - * Function called by the HELLO subsystem whenever OUR hello - * changes. Re-triggers the DHT PUT immediately. - */ void GCD_hello_update () { @@ -229,11 +222,6 @@ GCD_hello_update () } -/** - * Initialize the DHT subsystem. - * - * @param c Configuration. - */ void GCD_init (const struct GNUNET_CONFIGURATION_Handle *c) { @@ -274,9 +262,6 @@ GCD_init (const struct GNUNET_CONFIGURATION_Handle *c) } -/** - * Shut down the DHT subsystem. - */ void GCD_shutdown (void) { @@ -293,12 +278,6 @@ GCD_shutdown (void) } -/** - * Search DHT for paths to @a peeR_id - * - * @param peer_id peer to search for - * @return handle to abort search - */ struct GCD_search_handle * GCD_search (const struct GNUNET_PeerIdentity *peer_id) { @@ -335,11 +314,6 @@ GCD_search (const struct GNUNET_PeerIdentity *peer_id) } -/** - * Stop DHT search started with #GCD_search(). - * - * @param h handle to search to stop - */ void GCD_search_stop (struct GCD_search_handle *h) { -- 2.25.1