aboutsummaryrefslogtreecommitdiff
path: root/src/transport/transport-testing-cmds.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/transport/transport-testing-cmds.h')
-rw-r--r--src/transport/transport-testing-cmds.h17
1 files changed, 7 insertions, 10 deletions
diff --git a/src/transport/transport-testing-cmds.h b/src/transport/transport-testing-cmds.h
index d6bb46f7d..10729990d 100644
--- a/src/transport/transport-testing-cmds.h
+++ b/src/transport/transport-testing-cmds.h
@@ -63,12 +63,6 @@ struct ConnectPeersState
63 const char *start_peer_label; 63 const char *start_peer_label;
64 64
65 /** 65 /**
66 * The peer identity of this peer.
67 *
68 */
69 struct GNUNET_PeerIdentity *id;
70
71 /**
72 * The topology of the test setup. 66 * The topology of the test setup.
73 */ 67 */
74 struct GNUNET_TESTING_NetjailTopology *topology; 68 struct GNUNET_TESTING_NetjailTopology *topology;
@@ -222,16 +216,19 @@ GNUNET_TRANSPORT_cmd_connect_peers (const char *label,
222 * Create command. 216 * Create command.
223 * 217 *
224 * @param label name for command. 218 * @param label name for command.
225 * @param m The number of the local node of the actual network namespace.
226 * @param n The number of the actual namespace.
227 * @param num Number globally identifying the node.
228 * @param start_peer_label Label of the cmd to start a peer. 219 * @param start_peer_label Label of the cmd to start a peer.
220 * @param start_peer_label Label of the cmd which started the test system.
221 * @param num Number globally identifying the node.
222 * @param The topology for the test setup.
229 * @return command. 223 * @return command.
230 */ 224 */
231struct GNUNET_TESTING_Command 225struct GNUNET_TESTING_Command
232GNUNET_TRANSPORT_cmd_send_simple (const char *label, 226GNUNET_TRANSPORT_cmd_send_simple (const char *label,
233 const char *start_peer_label, 227 const char *start_peer_label,
234 uint32_t num); 228 const char *create_label,
229 uint32_t num,
230 struct GNUNET_TESTING_NetjailTopology *
231 topology);
235 232
236 233
237/** 234/**