operation and peer_destroy
[oweals/gnunet.git] / src / testbed / testbed_api_peers.h
1 /*
2       This file is part of GNUnet
3       (C) 2008--2012 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 3, 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 testbed/testbed_api_peers.h
23  * @brief internal API to access the 'peers' subsystem
24  * @author Christian Grothoff
25  */
26 #ifndef NEW_TESTING_API_PEERS_H
27 #define NEW_TESTING_API_PEERS_H
28
29 #include "gnunet_testbed_service.h"
30 #include "gnunet_helper_lib.h"
31
32
33 /**
34  * Data for the OperationType OP_PEER_DESTROY;
35  */
36 struct PeerDestroyData
37 {
38   struct GNUNET_TESTBED_Peer *peer;
39 };
40
41
42 /**
43  * Create the given peer at the specified host using the given
44  * controller.  If the given controller is not running on the target
45  * host, it should find or create a controller at the target host and
46  * delegate creating the peer.  Explicit delegation paths can be setup
47  * using 'GNUNET_TESTBED_controller_link'.  If no explicit delegation
48  * path exists, a direct link with a subordinate controller is setup
49  * for the first delegated peer to a particular host; the subordinate
50  * controller is then destroyed once the last peer that was delegated
51  * to the remote host is stopped.  This function is used in particular
52  * if some other controller has already assigned a unique ID to the
53  * peer.
54  *
55  * Creating the peer only creates the handle to manipulate and further
56  * configure the peer; use "GNUNET_TESTBED_peer_start" and
57  * "GNUNET_TESTBED_peer_stop" to actually start/stop the peer's
58  * processes.
59  *
60  * Note that the given configuration will be adjusted by the
61  * controller to avoid port/path conflicts with other peers.
62  * The "final" configuration can be obtained using
63  * 'GNUNET_TESTBED_peer_get_information'.
64  *
65  * @param unique_id unique ID for this peer
66  * @param controller controller process to use
67  * @param host host to run the peer on
68  * @param cfg configuration to use for the peer
69  * @return handle to the peer (actual startup will happen asynchronously)
70  */
71 struct GNUNET_TESTBED_Peer *
72 GNUNET_TESTBED_peer_create_with_id_ (uint32_t unique_id,
73                                      struct GNUNET_TESTBED_Controller *controller,                                   
74                                      struct GNUNET_TESTBED_Host *host,
75                                      const struct GNUNET_CONFIGURATION_Handle *cfg);
76
77
78
79 #endif
80 /* end of testbed_api_peers.h */