aboutsummaryrefslogtreecommitdiff
path: root/src/cadet/gnunet-service-cadet_dht.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/cadet/gnunet-service-cadet_dht.h')
-rw-r--r--src/cadet/gnunet-service-cadet_dht.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/cadet/gnunet-service-cadet_dht.h b/src/cadet/gnunet-service-cadet_dht.h
index 03f045938..4cb6e9fff 100644
--- a/src/cadet/gnunet-service-cadet_dht.h
+++ b/src/cadet/gnunet-service-cadet_dht.h
@@ -11,12 +11,12 @@
11 WITHOUT ANY WARRANTY; without even the implied warranty of 11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Affero General Public License for more details. 13 Affero General Public License for more details.
14 14
15 You should have received a copy of the GNU Affero General Public License 15 You should have received a copy of the GNU Affero General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>. 16 along with this program. If not, see <http://www.gnu.org/licenses/>.
17 17
18 SPDX-License-Identifier: AGPL3.0-or-later 18 SPDX-License-Identifier: AGPL3.0-or-later
19*/ 19 */
20 20
21/** 21/**
22 * @file cadet/gnunet-service-cadet_dht.h 22 * @file cadet/gnunet-service-cadet_dht.h
@@ -52,14 +52,14 @@ struct GCD_search_handle;
52 * @param c Configuration. 52 * @param c Configuration.
53 */ 53 */
54void 54void
55GCD_init (const struct GNUNET_CONFIGURATION_Handle *c); 55GCD_init(const struct GNUNET_CONFIGURATION_Handle *c);
56 56
57 57
58/** 58/**
59 * Shut down the DHT subsystem. 59 * Shut down the DHT subsystem.
60 */ 60 */
61void 61void
62GCD_shutdown (void); 62GCD_shutdown(void);
63 63
64 64
65/** 65/**
@@ -67,7 +67,7 @@ GCD_shutdown (void);
67 * changes. Re-triggers the DHT PUT immediately. 67 * changes. Re-triggers the DHT PUT immediately.
68 */ 68 */
69void 69void
70GCD_hello_update (void); 70GCD_hello_update(void);
71 71
72/** 72/**
73 * Search DHT for paths to @a peeR_id 73 * Search DHT for paths to @a peeR_id
@@ -76,7 +76,7 @@ GCD_hello_update (void);
76 * @return handle to abort search 76 * @return handle to abort search
77 */ 77 */
78struct GCD_search_handle * 78struct GCD_search_handle *
79GCD_search (const struct GNUNET_PeerIdentity *peer_id); 79GCD_search(const struct GNUNET_PeerIdentity *peer_id);
80 80
81 81
82/** 82/**
@@ -85,7 +85,7 @@ GCD_search (const struct GNUNET_PeerIdentity *peer_id);
85 * @param h handle to search to stop 85 * @param h handle to search to stop
86 */ 86 */
87void 87void
88GCD_search_stop (struct GCD_search_handle *h); 88GCD_search_stop(struct GCD_search_handle *h);
89 89
90 90
91#if 0 /* keep Emacsens' auto-indent happy */ 91#if 0 /* keep Emacsens' auto-indent happy */