aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_testbed_service.h
diff options
context:
space:
mode:
authorSree Harsha Totakura <totakura@in.tum.de>2012-12-03 16:46:58 +0000
committerSree Harsha Totakura <totakura@in.tum.de>2012-12-03 16:46:58 +0000
commit2ee48eea42eca9d2dc7dc4d58ab9cf3f2dbb5066 (patch)
tree8fce122235044be5e6ec93e3372ee5de9a4c7548 /src/include/gnunet_testbed_service.h
parentf31790d110d6eed2aa78f336f96cc2240bd44c39 (diff)
downloadgnunet-2ee48eea42eca9d2dc7dc4d58ab9cf3f2dbb5066.tar.gz
gnunet-2ee48eea42eca9d2dc7dc4d58ab9cf3f2dbb5066.zip
host compatibility check in GNUNET_TESTBED_run() and fixes
Diffstat (limited to 'src/include/gnunet_testbed_service.h')
-rw-r--r--src/include/gnunet_testbed_service.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/include/gnunet_testbed_service.h b/src/include/gnunet_testbed_service.h
index 55e503232..ca39d26a7 100644
--- a/src/include/gnunet_testbed_service.h
+++ b/src/include/gnunet_testbed_service.h
@@ -144,9 +144,14 @@ struct GNUNET_TESTBED_HostHabitableCheckHandle;
144 * GNUNET_TESTBED_is_host_habitable() is invalid after this callback is called 144 * GNUNET_TESTBED_is_host_habitable() is invalid after this callback is called
145 * 145 *
146 * @param cls the closure given to GNUNET_TESTBED_is_host_habitable() 146 * @param cls the closure given to GNUNET_TESTBED_is_host_habitable()
147 * @param host the host whose status is being reported; will be NULL if the host
148 * given to GNUNET_TESTBED_is_host_habitable() is NULL
147 * @param status GNUNET_YES if it is habitable; GNUNET_NO if not 149 * @param status GNUNET_YES if it is habitable; GNUNET_NO if not
148 */ 150 */
149typedef void (*GNUNET_TESTBED_HostHabitableCallback) (void *cls, 151typedef void (*GNUNET_TESTBED_HostHabitableCallback) (void *cls,
152 const struct
153 GNUNET_TESTBED_Host
154 *host,
150 int status); 155 int status);
151 156
152 157