aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_testing_lib.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/gnunet_testing_lib.h')
-rw-r--r--src/include/gnunet_testing_lib.h29
1 files changed, 27 insertions, 2 deletions
diff --git a/src/include/gnunet_testing_lib.h b/src/include/gnunet_testing_lib.h
index 03b837668..b170670d1 100644
--- a/src/include/gnunet_testing_lib.h
+++ b/src/include/gnunet_testing_lib.h
@@ -304,9 +304,34 @@ struct GNUNET_TESTING_Daemon
304 void *update_cb_cls; 304 void *update_cb_cls;
305 305
306 /** 306 /**
307 * PID of the process that we started last. 307 * PID of the process we used to run gnunet-arm or SSH to start the peer.
308 */ 308 */
309 struct GNUNET_OS_Process *proc; 309 struct GNUNET_OS_Process *proc_arm_start;
310
311 /**
312 * PID of the process we used to run gnunet-arm or SSH to stop the peer.
313 */
314 struct GNUNET_OS_Process *proc_arm_stop;
315
316 /**
317 * PID of the process we used to run gnunet-arm or SSH to manage services at the peer.
318 */
319 struct GNUNET_OS_Process *proc_arm_srv_start;
320
321 /**
322 * PID of the process we used to run gnunet-arm or SSH to manage services at the peer.
323 */
324 struct GNUNET_OS_Process *proc_arm_srv_stop;
325
326 /**
327 * PID of the process we used to run copy files
328 */
329 struct GNUNET_OS_Process *proc_arm_copying;
330
331 /**
332 * PID of the process we used to run gnunet-peerinfo.
333 */
334 struct GNUNET_OS_Process *proc_arm_peerinfo;
310 335
311 /** 336 /**
312 * Handle to the server. 337 * Handle to the server.