aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorMartin Schanzenbach <schanzen@gnunet.org>2022-12-02 15:38:14 +0900
committerMartin Schanzenbach <schanzen@gnunet.org>2022-12-02 15:38:14 +0900
commitda4625d243cae07a42e543f7e9456a4bd49f1fe3 (patch)
tree74b97feaf764405c22955cd78ed1b2293ac6b04c /src/include
parent535186257e36201f948cf742d529e6864d264f1c (diff)
downloadgnunet-da4625d243cae07a42e543f7e9456a4bd49f1fe3.tar.gz
gnunet-da4625d243cae07a42e543f7e9456a4bd49f1fe3.zip
-cleanup testing a bit
Diffstat (limited to 'src/include')
-rw-r--r--src/include/gnunet_testing_netjail_lib.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/gnunet_testing_netjail_lib.h b/src/include/gnunet_testing_netjail_lib.h
index ae2f37b48..8af13df53 100644
--- a/src/include/gnunet_testing_netjail_lib.h
+++ b/src/include/gnunet_testing_netjail_lib.h
@@ -262,7 +262,7 @@ GNUNET_TESTING_get_topo_from_file (const char *filename);
262 * @return The GNUNET_TESTING_NetjailTopology 262 * @return The GNUNET_TESTING_NetjailTopology
263 */ 263 */
264struct GNUNET_TESTING_NetjailTopology * 264struct GNUNET_TESTING_NetjailTopology *
265GNUNET_TESTING_get_topo_from_string (char *data); 265GNUNET_TESTING_get_topo_from_string (const char *data);
266 266
267 267
268/** 268/**
@@ -285,8 +285,8 @@ GNUNET_TESTING_get_additional_connects (unsigned int num,
285 * @return The connections of the node. 285 * @return The connections of the node.
286 */ 286 */
287struct GNUNET_TESTING_NodeConnection * 287struct GNUNET_TESTING_NodeConnection *
288GNUNET_TESTING_get_connections (unsigned int num, struct 288GNUNET_TESTING_get_connections (unsigned int num,
289 GNUNET_TESTING_NetjailTopology *topology); 289 const struct GNUNET_TESTING_NetjailTopology *topology);
290 290
291 291
292/** 292/**
@@ -298,7 +298,7 @@ GNUNET_TESTING_get_connections (unsigned int num, struct
298 */ 298 */
299char * 299char *
300GNUNET_TESTING_get_address (struct GNUNET_TESTING_NodeConnection *connection, 300GNUNET_TESTING_get_address (struct GNUNET_TESTING_NodeConnection *connection,
301 char *prefix); 301 const char *prefix);
302 302
303 303
304/** 304/**