aboutsummaryrefslogtreecommitdiff
path: root/src/testbed/testbed_api.h
diff options
context:
space:
mode:
authorSree Harsha Totakura <totakura@in.tum.de>2013-01-03 17:27:34 +0000
committerSree Harsha Totakura <totakura@in.tum.de>2013-01-03 17:27:34 +0000
commit129fe6c83b9fa2ffcf94fb39df42dbcadc97ca24 (patch)
tree7fa5ee3d41f803dfaea5023960ac5e420665e958 /src/testbed/testbed_api.h
parentb53d7bfde8da84afaa7ee8888d15f1cc6cffd866 (diff)
downloadgnunet-129fe6c83b9fa2ffcf94fb39df42dbcadc97ca24.tar.gz
gnunet-129fe6c83b9fa2ffcf94fb39df42dbcadc97ca24.zip
- give more weight to failure events
Diffstat (limited to 'src/testbed/testbed_api.h')
-rw-r--r--src/testbed/testbed_api.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/testbed/testbed_api.h b/src/testbed/testbed_api.h
index b82c374ad..7586ed28d 100644
--- a/src/testbed/testbed_api.h
+++ b/src/testbed/testbed_api.h
@@ -564,12 +564,14 @@ GNUNET_TESTBED_get_tslot_ (struct GNUNET_TESTBED_Controller *c, void *key);
564 * @param index the index of the time slot to update 564 * @param index the index of the time slot to update
565 * @param key the key to identify ownership of the slot 565 * @param key the key to identify ownership of the slot
566 * @param time the new time 566 * @param time the new time
567 * @param failed should this reading be treated as coming from a fail event
567 */ 568 */
568void 569void
569GNUNET_TESTBED_update_time_slot_ (struct GNUNET_TESTBED_Controller *c, 570GNUNET_TESTBED_update_time_slot_ (struct GNUNET_TESTBED_Controller *c,
570 unsigned int index, 571 unsigned int index,
571 void *key, 572 void *key,
572 struct GNUNET_TIME_Relative time); 573 struct GNUNET_TIME_Relative time,
574 int failed);
573 575
574 576
575/** 577/**