aboutsummaryrefslogtreecommitdiff
path: root/src/transport/transport_api_cmd_send_simple.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/transport/transport_api_cmd_send_simple.c')
-rw-r--r--src/transport/transport_api_cmd_send_simple.c20
1 files changed, 2 insertions, 18 deletions
diff --git a/src/transport/transport_api_cmd_send_simple.c b/src/transport/transport_api_cmd_send_simple.c
index 1599dfe97..0631f7051 100644
--- a/src/transport/transport_api_cmd_send_simple.c
+++ b/src/transport/transport_api_cmd_send_simple.c
@@ -36,18 +36,6 @@
36struct SendSimpleState 36struct SendSimpleState
37{ 37{
38 /** 38 /**
39 * The number of the local node of the actual network namespace.
40 *
41 */
42 char *m;
43
44 /**
45 * The number of the actual namespace.
46 *
47 */
48 char *n;
49
50 /**
51 * Number globally identifying the node. 39 * Number globally identifying the node.
52 * 40 *
53 */ 41 */
@@ -146,16 +134,12 @@ send_simple_run (void *cls,
146 */ 134 */
147struct GNUNET_TESTING_Command 135struct GNUNET_TESTING_Command
148GNUNET_TRANSPORT_cmd_send_simple (const char *label, 136GNUNET_TRANSPORT_cmd_send_simple (const char *label,
149 char *m, 137 const char *start_peer_label,
150 char *n, 138 uint32_t num)
151 uint32_t num,
152 const char *start_peer_label)
153{ 139{
154 struct SendSimpleState *sss; 140 struct SendSimpleState *sss;
155 141
156 sss = GNUNET_new (struct SendSimpleState); 142 sss = GNUNET_new (struct SendSimpleState);
157 sss->m = m;
158 sss->n = n;
159 sss->num = num; 143 sss->num = num;
160 sss->start_peer_label = start_peer_label; 144 sss->start_peer_label = start_peer_label;
161 { 145 {