HKDF (does not work yet)
[oweals/gnunet.git] / src / include / gnunet_testing_lib.h
1 /*
2       This file is part of GNUnet
3       (C) 2008, 2009 Christian Grothoff (and other contributing authors)
4
5       GNUnet is free software; you can redistribute it and/or modify
6       it under the terms of the GNU General Public License as published
7       by the Free Software Foundation; either version 2, or (at your
8       option) any later version.
9
10       GNUnet is distributed in the hope that it will be useful, but
11       WITHOUT ANY WARRANTY; without even the implied warranty of
12       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13       General Public License for more details.
14
15       You should have received a copy of the GNU General Public License
16       along with GNUnet; see the file COPYING.  If not, write to the
17       Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18       Boston, MA 02111-1307, USA.
19  */
20
21 /**
22  * @file include/gnunet_testing_lib.h
23  * @brief convenience API for writing testcases for GNUnet
24  *        Many testcases need to start and stop gnunetd,
25  *        and this library is supposed to make that easier
26  *        for TESTCASES.  Normal programs should always
27  *        use functions from gnunet_{util,arm}_lib.h.  This API is
28  *        ONLY for writing testcases!
29  * @author Christian Grothoff
30  */
31
32 #ifndef GNUNET_TESTING_LIB_H
33 #define GNUNET_TESTING_LIB_H
34
35 #include "gnunet_util_lib.h"
36
37 #ifdef __cplusplus
38 extern "C"
39 {
40 #if 0                           /* keep Emacsens' auto-indent happy */
41 }
42 #endif
43 #endif
44
45 /**
46  * Handle for a GNUnet daemon (technically a set of
47  * daemons; the handle is really for the master ARM
48  * daemon) started by the testing library.
49  */
50 struct GNUNET_TESTING_Daemon;
51
52 /**
53  * Prototype of a function that will be called whenever
54  * a daemon was started by the testing library.
55  *
56  * @param cls closure
57  * @param id identifier for the daemon, NULL on error
58  * @param d handle for the daemon
59  * @param emsg error message (NULL on success)
60  */
61 typedef void (*GNUNET_TESTING_NotifyHostkeyCreated)(void *cls,
62                                                     const struct GNUNET_PeerIdentity *id,
63                                                     struct GNUNET_TESTING_Daemon *d,
64                                                     const char *emsg);
65
66 /**
67  * Prototype of a function that will be called whenever
68  * a daemon was started by the testing library.
69  *
70  * @param cls closure
71  * @param id identifier for the daemon, NULL on error
72  * @param cfg configuration used by this daemon
73  * @param d handle for the daemon
74  * @param emsg error message (NULL on success)
75  */
76 typedef void (*GNUNET_TESTING_NotifyDaemonRunning)(void *cls,
77                                                    const struct GNUNET_PeerIdentity *id,
78                                                    const struct GNUNET_CONFIGURATION_Handle *cfg,
79                                                    struct GNUNET_TESTING_Daemon *d,
80                                                    const char *emsg);
81
82
83 /**
84  * Handle to an entire testbed of GNUnet peers.
85  */
86 struct GNUNET_TESTING_Testbed;
87
88 /**
89  * Phases of starting GNUnet on a system.
90  */
91 enum GNUNET_TESTING_StartPhase
92 {
93   /**
94    * Copy the configuration file to the target system.
95    */
96   SP_COPYING,
97
98   /**
99    * Configuration file has been copied, generate hostkey.
100    */
101   SP_COPIED,
102
103   /**
104    * Create the hostkey for the peer.
105    */
106   SP_HOSTKEY_CREATE,
107
108   /**
109    * Hostkey generated, wait for topology to be finished.
110    */
111   SP_HOSTKEY_CREATED,
112
113   /**
114    * Topology has been created, now start ARM.
115    */
116   SP_TOPOLOGY_SETUP,
117
118   /**
119    * ARM has been started, check that it has properly daemonized and
120    * then try to connect to the CORE service (which should be
121    * auto-started by ARM).
122    */
123   SP_START_ARMING,
124
125   /**
126    * We're waiting for CORE to start.
127    */
128   SP_START_CORE,
129
130   /**
131    * Core has notified us that we've established a connection to the service.
132    * The main FSM halts here and waits to be moved to UPDATE or CLEANUP.
133    */
134   SP_START_DONE,
135
136   /**
137    * We've been asked to terminate the instance and are now waiting for
138    * the remote command to stop the gnunet-arm process and delete temporary
139    * files.
140    */
141   SP_SHUTDOWN_START,
142
143   /**
144    * We've received a configuration update and are currently waiting for
145    * the copy process for the update to complete.  Once it is, we will
146    * return to "SP_START_DONE" (and rely on ARM to restart all affected
147    * services).
148    */
149   SP_CONFIG_UPDATE
150 };
151
152 /**
153  * Prototype of a function that will be called when a
154  * particular operation was completed the testing library.
155  *
156  * @param cls closure
157  * @param emsg NULL on success
158  */
159 typedef void (*GNUNET_TESTING_NotifyCompletion)(void *cls,
160                                                 const char *emsg);
161
162 /**
163  * Prototype of a function that will be called with the
164  * number of connections created for a particular topology.
165  *
166  * @param cls closure
167  * @param num_connections the number of connections created
168  */
169 typedef void (*GNUNET_TESTING_NotifyConnections)(void *cls,
170                                                 unsigned int num_connections);
171
172 /**
173  * Handle for a GNUnet daemon (technically a set of
174  * daemons; the handle is really for the master ARM
175  * daemon) started by the testing library.
176  */
177 struct GNUNET_TESTING_Daemon
178 {
179   /**
180    * Our scheduler.
181    */
182   struct GNUNET_SCHEDULER_Handle *sched;
183
184   /**
185    * Our configuration.
186    */
187   struct GNUNET_CONFIGURATION_Handle *cfg;
188
189   /**
190    * At what time to give up starting the peer
191    */
192   struct GNUNET_TIME_Absolute max_timeout;
193
194   /**
195    * Host to run GNUnet on.
196    */
197   char *hostname;
198
199   /**
200    * Result of GNUNET_i2s of this peer,
201    * for printing
202    */
203   char *shortname;
204
205   /**
206    * Username we are using.
207    */
208   char *username;
209
210   /**
211    * Name of the configuration file
212    */
213   char *cfgfile;
214
215   /**
216    * Callback to inform initiator that the peer's
217    * hostkey has been created.
218    */
219   GNUNET_TESTING_NotifyHostkeyCreated hostkey_callback;
220
221   /**
222    * Closure for hostkey creation callback.
223    */
224   void *hostkey_cls;
225
226   /**
227    * Function to call when the peer is running.
228    */
229   GNUNET_TESTING_NotifyDaemonRunning cb;
230
231   /**
232    * Closure for cb.
233    */
234   void *cb_cls;
235
236   /**
237    * Arguments from "daemon_stop" call.
238    */
239   GNUNET_TESTING_NotifyCompletion dead_cb;
240
241   /**
242    * Closure for 'dead_cb'.
243    */
244   void *dead_cb_cls;
245
246   /**
247    * Arguments from "daemon_stop" call.
248    */
249   GNUNET_TESTING_NotifyCompletion update_cb;
250
251   /**
252    * Closure for 'update_cb'.
253    */
254   void *update_cb_cls;
255
256   /**
257    * Identity of this peer (once started).
258    */
259   struct GNUNET_PeerIdentity id;
260
261   /**
262    * Flag to indicate that we've already been asked
263    * to terminate (but could not because some action
264    * was still pending).
265    */
266   int dead;
267
268   /**
269    * PID of the process that we started last.
270    */
271   pid_t pid;
272
273   /**
274    * In which phase are we during the start of
275    * this process?
276    */
277   enum GNUNET_TESTING_StartPhase phase;
278
279   /**
280    * ID of the current task.
281    */
282   GNUNET_SCHEDULER_TaskIdentifier task;
283
284   /**
285    * Handle to the server.
286    */
287   struct GNUNET_CORE_Handle *server;
288
289   /**
290    * Handle to the transport service of this peer
291    */
292   struct GNUNET_TRANSPORT_Handle *th;
293
294   /**
295    * HELLO message for this peer
296    */
297   struct GNUNET_HELLO_Message *hello;
298
299   /**
300    * Handle to a pipe for reading the hostkey.
301    */
302   struct GNUNET_DISK_PipeHandle *pipe_stdout;
303
304   /**
305    * Output from gnunet-peerinfo is read into this buffer.
306    */
307   char hostkeybuf[105];
308
309   /**
310    * Current position in 'hostkeybuf' (for reading from gnunet-peerinfo)
311    */
312   unsigned int hostkeybufpos;
313
314   /**
315    * Set to GNUNET_YES once the peer is up.
316    */
317   int running;
318
319   /**
320    * Used to tell shutdown not to remove configuration for the peer
321    * (if it's going to be restarted later)
322    */
323   int churn;
324 };
325
326
327 /**
328  * Handle to a group of GNUnet peers.
329  */
330 struct GNUNET_TESTING_PeerGroup;
331
332
333 /**
334  * Prototype of a function that will be called whenever
335  * two daemons are connected by the testing library.
336  *
337  * @param cls closure
338  * @param first peer id for first daemon
339  * @param second peer id for the second daemon
340  * @param distance distance between the connected peers
341  * @param first_cfg config for the first daemon
342  * @param second_cfg config for the second daemon
343  * @param first_daemon handle for the first daemon
344  * @param second_daemon handle for the second daemon
345  * @param emsg error message (NULL on success)
346  */
347 typedef void (*GNUNET_TESTING_NotifyConnection)(void *cls,
348                                                 const struct GNUNET_PeerIdentity *first,
349                                                 const struct GNUNET_PeerIdentity *second,
350                                                 uint32_t distance,
351                                                 const struct GNUNET_CONFIGURATION_Handle *first_cfg,
352                                                 const struct GNUNET_CONFIGURATION_Handle *second_cfg,
353                                                 struct GNUNET_TESTING_Daemon *first_daemon,
354                                                 struct GNUNET_TESTING_Daemon *second_daemon,
355                                                 const char *emsg);
356
357 /**
358  * Starts a GNUnet daemon.  GNUnet must be installed on the target
359  * system and available in the PATH.  The machine must furthermore be
360  * reachable via "ssh" (unless the hostname is "NULL") without the
361  * need to enter a password.
362  *
363  * @param sched scheduler to use
364  * @param cfg configuration to use
365  * @param timeout how long to wait starting up peers
366  * @param hostname name of the machine where to run GNUnet
367  *        (use NULL for localhost).
368  * @param hostkey_callback function to call once the hostkey has been
369  *        generated for this peer, but it hasn't yet been started
370  *        (NULL to start immediately, otherwise waits on GNUNET_TESTING_daemon_continue_start)
371  * @param hostkey_cls closure for hostkey callback
372  * @param cb function to call with the result
373  * @param cb_cls closure for cb
374  * @return handle to the daemon (actual start will be completed asynchronously)
375  */
376 struct GNUNET_TESTING_Daemon *
377 GNUNET_TESTING_daemon_start (struct GNUNET_SCHEDULER_Handle *sched,
378                              const struct GNUNET_CONFIGURATION_Handle *cfg,
379                              struct GNUNET_TIME_Relative timeout,
380                              const char *hostname,
381                              GNUNET_TESTING_NotifyHostkeyCreated hostkey_callback,
382                              void *hostkey_cls,
383                              GNUNET_TESTING_NotifyDaemonRunning cb,
384                              void *cb_cls);
385
386 /**
387  * Continues GNUnet daemon startup when user wanted to be notified
388  * once a hostkey was generated (for creating friends files, blacklists,
389  * etc.).
390  *
391  * @param daemon the daemon to finish starting
392  */
393 void
394 GNUNET_TESTING_daemon_continue_startup(struct GNUNET_TESTING_Daemon *daemon);
395
396 /**
397  * Restart (stop and start) a GNUnet daemon.
398  *
399  * @param d the daemon that should be restarted
400  * @param cb function called once the daemon is (re)started
401  * @param cb_cls closure for cb
402  */
403 void
404 GNUNET_TESTING_daemon_restart (struct GNUNET_TESTING_Daemon *d,
405                                GNUNET_TESTING_NotifyDaemonRunning cb, void *cb_cls);
406
407 /**
408  * Start a peer that has previously been stopped using the daemon_stop
409  * call (and files weren't deleted and the allow restart flag)
410  *
411  * @param daemon the daemon to start (has been previously stopped)
412  * @param timeout how long to wait for restart
413  * @param cb the callback for notification when the peer is running
414  * @param cb_cls closure for the callback
415  */
416 void
417 GNUNET_TESTING_daemon_start_stopped (struct GNUNET_TESTING_Daemon *daemon,
418                                      struct GNUNET_TIME_Relative timeout,
419                                      GNUNET_TESTING_NotifyDaemonRunning cb,
420                                      void *cb_cls);
421
422 /**
423  * Get a certain testing daemon handle.
424  *
425  * @param pg handle to the set of running peers
426  * @param position the number of the peer to return
427  */
428 struct GNUNET_TESTING_Daemon *
429 GNUNET_TESTING_daemon_get (struct GNUNET_TESTING_PeerGroup *pg, 
430                            unsigned int position);
431
432
433 /**
434  * Stops a GNUnet daemon.
435  *
436  * @param d the daemon that should be stopped
437  * @param timeout how long to wait for process for shutdown to complete
438  * @param cb function called once the daemon was stopped
439  * @param cb_cls closure for cb
440  * @param delete_files GNUNET_YES to remove files, GNUNET_NO
441  *        to leave them (i.e. for restarting at a later time,
442  *        or logfile inspection once finished)
443  * @param allow_restart GNUNET_YES to restart peer later (using this API)
444  *        GNUNET_NO to kill off and clean up for good
445  */
446 void
447 GNUNET_TESTING_daemon_stop (struct GNUNET_TESTING_Daemon *d,
448                             struct GNUNET_TIME_Relative timeout,
449                             GNUNET_TESTING_NotifyCompletion cb, void *cb_cls,
450                             int delete_files, int allow_restart);
451
452
453 /**
454  * Changes the configuration of a GNUnet daemon.
455  *
456  * @param d the daemon that should be modified
457  * @param cfg the new configuration for the daemon
458  * @param cb function called once the configuration was changed
459  * @param cb_cls closure for cb
460  */
461 void GNUNET_TESTING_daemon_reconfigure (struct GNUNET_TESTING_Daemon *d,
462                                         struct GNUNET_CONFIGURATION_Handle *cfg,
463                                         GNUNET_TESTING_NotifyCompletion cb,
464                                         void * cb_cls);
465
466
467 /**
468  * Establish a connection between two GNUnet daemons.
469  *
470  * @param d1 handle for the first daemon
471  * @param d2 handle for the second daemon
472  * @param timeout how long is the connection attempt
473  *        allowed to take?
474  * @param max_connect_attempts how many times should we try to reconnect
475  *        (within timeout)
476  * @param cb function to call at the end
477  * @param cb_cls closure for cb
478  */
479 void GNUNET_TESTING_daemons_connect (struct GNUNET_TESTING_Daemon *d1,
480                                      struct GNUNET_TESTING_Daemon *d2,
481                                      struct GNUNET_TIME_Relative timeout,
482                                      unsigned int max_connect_attempts,
483                                      GNUNET_TESTING_NotifyConnection cb,
484                                      void *cb_cls);
485
486
487
488
489 /**
490  * Start count gnunetd processes with the same set of transports and
491  * applications.  The port numbers (any option called "PORT") will be
492  * adjusted to ensure that no two peers running on the same system
493  * have the same port(s) in their respective configurations.
494  *
495  * @param sched scheduler to use
496  * @param cfg configuration template to use
497  * @param total number of daemons to start
498  * @param timeout total time allowed for peers to start
499  * @param hostkey_callback function to call on each peers hostkey generation
500  *        if NULL, peers will be started by this call, if non-null,
501  *        GNUNET_TESTING_daemons_continue_startup must be called after
502  *        successful hostkey generation
503  * @param hostkey_cls closure for hostkey callback
504  * @param cb function to call on each daemon that was started
505  * @param cb_cls closure for cb
506  * @param connect_callback function to call each time two hosts are connected
507  * @param connect_callback_cls closure for connect_callback
508  * @param hostnames space-separated list of hostnames to use; can be NULL (to run
509  *        everything on localhost).
510  * @return NULL on error, otherwise handle to control peer group
511  */
512 struct GNUNET_TESTING_PeerGroup *
513 GNUNET_TESTING_daemons_start (struct GNUNET_SCHEDULER_Handle *sched,
514                               const struct GNUNET_CONFIGURATION_Handle *cfg,
515                               unsigned int total,
516                               struct GNUNET_TIME_Relative timeout,
517                               GNUNET_TESTING_NotifyHostkeyCreated hostkey_callback,
518                               void *hostkey_cls,
519                               GNUNET_TESTING_NotifyDaemonRunning cb,
520                               void *cb_cls,
521                               GNUNET_TESTING_NotifyConnection
522                               connect_callback, void *connect_callback_cls,
523                               const char *hostnames);
524
525 /**
526  * Function which continues a peer group starting up
527  * after successfully generating hostkeys for each peer.
528  *
529  * @param pg the peer group to continue starting
530  */
531 void
532 GNUNET_TESTING_daemons_continue_startup(struct GNUNET_TESTING_PeerGroup *pg);
533
534 /**
535  * Restart all peers in the given group.
536  *
537  * @param pg the handle to the peer group
538  * @param callback function to call on completion (or failure)
539  * @param callback_cls closure for the callback function
540  */
541 void
542 GNUNET_TESTING_daemons_restart (struct GNUNET_TESTING_PeerGroup *pg,
543                                 GNUNET_TESTING_NotifyCompletion callback,
544                                 void *callback_cls);
545
546
547 /**
548  * Shutdown all peers started in the given group.
549  *
550  * @param pg handle to the peer group
551  * @param timeout how long to wait for shutdown
552  * @param cb callback to notify upon success or failure
553  * @param cb_cls closure for cb
554  */
555 void
556 GNUNET_TESTING_daemons_stop (struct GNUNET_TESTING_PeerGroup *pg, 
557                              struct GNUNET_TIME_Relative timeout,
558                              GNUNET_TESTING_NotifyCompletion cb,
559                              void *cb_cls);
560
561
562 /**
563  * Simulate churn by stopping some peers (and possibly
564  * re-starting others if churn is called multiple times).  This
565  * function can only be used to create leave-join churn (peers "never"
566  * leave for good).  First "voff" random peers that are currently
567  * online will be taken offline; then "von" random peers that are then
568  * offline will be put back online.  No notifications will be
569  * generated for any of these operations except for the callback upon
570  * completion.  Note that the implementation is at liberty to keep
571  * the ARM service itself (but none of the other services or daemons)
572  * running even though the "peer" is being varied offline.
573  *
574  * @param pg handle for the peer group
575  * @param voff number of peers that should go offline
576  * @param von number of peers that should come back online;
577  *            must be zero on first call (since "testbed_start"
578  *            always starts all of the peers)
579  * @param timeout how long to wait for operations to finish before
580  *        giving up
581  * @param cb function to call at the end
582  * @param cb_cls closure for cb
583  */
584 void
585 GNUNET_TESTING_daemons_churn (struct GNUNET_TESTING_PeerGroup *pg,
586                               unsigned int voff,
587                               unsigned int von,
588                               struct GNUNET_TIME_Relative timeout,
589                               GNUNET_TESTING_NotifyCompletion cb,
590                               void *cb_cls);
591
592
593 /**
594  * Topologies supported for testbeds.
595  */
596 enum GNUNET_TESTING_Topology
597 {
598   /**
599    * A clique (everyone connected to everyone else).
600    */
601   GNUNET_TESTING_TOPOLOGY_CLIQUE,
602
603   /**
604    * Small-world network (2d torus plus random links).
605    */
606   GNUNET_TESTING_TOPOLOGY_SMALL_WORLD,
607
608   /**
609    * Small-world network (ring plus random links).
610    */
611   GNUNET_TESTING_TOPOLOGY_SMALL_WORLD_RING,
612
613   /**
614    * Ring topology.
615    */
616   GNUNET_TESTING_TOPOLOGY_RING,
617
618   /**
619    * 2-d torus.
620    */
621   GNUNET_TESTING_TOPOLOGY_2D_TORUS,
622
623   /**
624    * Random graph.
625    */
626   GNUNET_TESTING_TOPOLOGY_ERDOS_RENYI,
627
628   /**
629    * Certain percentage of peers are unable to communicate directly
630    * replicating NAT conditions
631    */
632   GNUNET_TESTING_TOPOLOGY_INTERNAT,
633
634   /**
635    * Scale free topology.
636    */
637   GNUNET_TESTING_TOPOLOGY_SCALE_FREE,
638
639   /**
640    * Straight line topology.
641    */
642   GNUNET_TESTING_TOPOLOGY_LINE,
643
644   /**
645    * All peers are disconnected.
646    */
647   GNUNET_TESTING_TOPOLOGY_NONE
648 };
649
650 /**
651  * Options for connecting a topology.
652  */
653 enum GNUNET_TESTING_TopologyOption
654 {
655   /**
656    * Try to connect all peers specified in the topology.
657    */
658   GNUNET_TESTING_TOPOLOGY_OPTION_ALL,
659
660   /**
661    * Choose a random subset of connections to create.
662    */
663   GNUNET_TESTING_TOPOLOGY_OPTION_RANDOM,
664
665   /**
666    * Create at least X connections for each peer.
667    */
668   GNUNET_TESTING_TOPOLOGY_OPTION_MINIMUM,
669
670   /**
671    * Using a depth first search, create one connection
672    * per peer.  If any are missed (graph disconnected)
673    * start over at those peers until all have at least one
674    * connection.
675    */
676   GNUNET_TESTING_TOPOLOGY_OPTION_DFS,
677
678   /**
679    * No options specified.
680    */
681   GNUNET_TESTING_TOPOLOGY_OPTION_NONE
682 };
683
684
685 /**
686  * Get a topology from a string input.
687  *
688  * @param topology where to write the retrieved topology
689  * @param topology_string The string to attempt to
690  *        get a configuration value from
691  * @return GNUNET_YES if topology string matched a
692  *         known topology, GNUNET_NO if not
693  */
694 int
695 GNUNET_TESTING_topology_get(enum GNUNET_TESTING_Topology *topology, char * topology_string);
696
697 /**
698  * Get connect topology option from string input.
699  *
700  * @param topology_option where to write the retrieved topology
701  * @param topology_string The string to attempt to
702  *        get a configuration value from
703  * @return GNUNET_YES if topology string matched a
704  *         known topology, GNUNET_NO if not
705  */
706 int
707 GNUNET_TESTING_topology_option_get(enum GNUNET_TESTING_TopologyOption *topology_option,
708                                    char * topology_string);
709
710
711 /**
712  * Takes a peer group and creates a topology based on the
713  * one specified.  Creates a topology means generates friend
714  * files for the peers so they can only connect to those allowed
715  * by the topology.  This will only have an effect once peers
716  * are started if the FRIENDS_ONLY option is set in the base
717  * config.  Also takes an optional restrict topology which
718  * disallows direct TCP connections UNLESS they are specified in
719  * the restricted topology.
720  *
721  * @param pg the peer group struct representing the running peers
722  * @param topology which topology to connect the peers in
723  * @param restrict_topology allow only direct TCP connections in this topology
724  * @param restrict_transports space delimited list of transports to blacklist
725  *                            to create restricted topology
726  *
727  * @return the maximum number of connections were all allowed peers
728  *         connected to each other
729  */
730 int
731 GNUNET_TESTING_create_topology (struct GNUNET_TESTING_PeerGroup *pg,
732                                 enum GNUNET_TESTING_Topology topology,
733                                 enum GNUNET_TESTING_Topology restrict_topology,
734                                 char *restrict_transports);
735
736 /**
737  * There are many ways to connect peers that are supported by this function.
738  * To connect peers in the same topology that was created via the
739  * GNUNET_TESTING_create_topology, the topology variable must be set to
740  * GNUNET_TESTING_TOPOLOGY_NONE.  If the topology variable is specified,
741  * a new instance of that topology will be generated and attempted to be
742  * connected.  This could result in some connections being impossible,
743  * because some topologies are non-deterministic.
744  *
745  * @param pg the peer group struct representing the running peers
746  * @param topology which topology to connect the peers in
747  * @param options options for connecting the topology
748  * @param option_modifier modifier for options that take a parameter
749  * @return the number of connections that will be attempted, GNUNET_SYSERR on error
750  */
751 int
752 GNUNET_TESTING_connect_topology (struct GNUNET_TESTING_PeerGroup *pg,
753                                  enum GNUNET_TESTING_Topology topology,
754                                  enum GNUNET_TESTING_TopologyOption options,
755                                  double option_modifier);
756
757 /**
758  * Start or stop an individual peer from the given group.
759  *
760  * @param pg handle to the peer group
761  * @param offset which peer to start or stop
762  * @param desired_status GNUNET_YES to have it running, GNUNET_NO to stop it
763  * @param timeout how long to wait for shutdown
764  * @param cb function to call at the end
765  * @param cb_cls closure for cb
766  */
767 void
768 GNUNET_TESTING_daemons_vary (struct GNUNET_TESTING_PeerGroup *pg, 
769                              unsigned int offset,
770                              int desired_status,
771                              struct GNUNET_TIME_Relative timeout,
772                              GNUNET_TESTING_NotifyCompletion cb,
773                              void *cb_cls);
774
775
776 #if 0                           /* keep Emacsens' auto-indent happy */
777 {
778 #endif
779 #ifdef __cplusplus
780 }
781 #endif
782
783 #endif