aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/testbed/testbed_api.c39
-rw-r--r--src/testbed/testbed_api.h15
2 files changed, 0 insertions, 54 deletions
diff --git a/src/testbed/testbed_api.c b/src/testbed/testbed_api.c
index 19c0b7699..6fd05e657 100644
--- a/src/testbed/testbed_api.c
+++ b/src/testbed/testbed_api.c
@@ -91,45 +91,6 @@ struct MessageQueue
91 91
92 92
93/** 93/**
94 * Structure for a controller link
95 */
96struct ControllerLink
97{
98 /**
99 * The next ptr for DLL
100 */
101 struct ControllerLink *next;
102
103 /**
104 * The prev ptr for DLL
105 */
106 struct ControllerLink *prev;
107
108 /**
109 * The host which will be referred in the peer start request. This is the
110 * host where the peer should be started
111 */
112 struct GNUNET_TESTBED_Host *delegated_host;
113
114 /**
115 * The host which will contacted to delegate the peer start request
116 */
117 struct GNUNET_TESTBED_Host *slave_host;
118
119 /**
120 * The configuration to be used to connect to slave host
121 */
122 const struct GNUNET_CONFIGURATION_Handle *slave_cfg;
123
124 /**
125 * GNUNET_YES if the slave should be started (and stopped) by us; GNUNET_NO
126 * if we are just allowed to use the slave via TCP/IP
127 */
128 int is_subordinate;
129};
130
131
132/**
133 * Context data for forwarded Operation 94 * Context data for forwarded Operation
134 */ 95 */
135struct ForwardedOperationData 96struct ForwardedOperationData
diff --git a/src/testbed/testbed_api.h b/src/testbed/testbed_api.h
index a90acbf81..000aeeda4 100644
--- a/src/testbed/testbed_api.h
+++ b/src/testbed/testbed_api.h
@@ -94,11 +94,6 @@ enum OperationType
94 */ 94 */
95struct MessageQueue; 95struct MessageQueue;
96 96
97/**
98 * Structure for a controller link
99 */
100struct ControllerLink;
101
102 97
103/** 98/**
104 * Enumeration of states of OperationContext 99 * Enumeration of states of OperationContext
@@ -224,16 +219,6 @@ struct GNUNET_TESTBED_Controller
224 struct MessageQueue *mq_tail; 219 struct MessageQueue *mq_tail;
225 220
226 /** 221 /**
227 * The head of the ControllerLink list
228 */
229 struct ControllerLink *cl_head;
230
231 /**
232 * The tail of the ControllerLink list
233 */
234 struct ControllerLink *cl_tail;
235
236 /**
237 * The client transmit handle 222 * The client transmit handle
238 */ 223 */
239 struct GNUNET_CLIENT_TransmitHandle *th; 224 struct GNUNET_CLIENT_TransmitHandle *th;