aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_testbed_service.h
diff options
context:
space:
mode:
authorSree Harsha Totakura <totakura@in.tum.de>2012-10-22 11:44:04 +0000
committerSree Harsha Totakura <totakura@in.tum.de>2012-10-22 11:44:04 +0000
commitf54cf6c01e2dac998c64249d72eb92dbf5d056db (patch)
tree18ed9fed6accd78bf526c2d959644d8efeee9abe /src/include/gnunet_testbed_service.h
parent76f59cc8768739288704cd3f6d3864760be035d0 (diff)
downloadgnunet-f54cf6c01e2dac998c64249d72eb92dbf5d056db.tar.gz
gnunet-f54cf6c01e2dac998c64249d72eb92dbf5d056db.zip
option for disabling auto retry
Diffstat (limited to 'src/include/gnunet_testbed_service.h')
-rw-r--r--src/include/gnunet_testbed_service.h26
1 files changed, 21 insertions, 5 deletions
diff --git a/src/include/gnunet_testbed_service.h b/src/include/gnunet_testbed_service.h
index ed7251ed3..e63030fbd 100644
--- a/src/include/gnunet_testbed_service.h
+++ b/src/include/gnunet_testbed_service.h
@@ -908,7 +908,8 @@ GNUNET_TESTBED_underlay_configure_link (void *op_cls,
908 908
909 909
910/** 910/**
911 * Topologies supported for testbeds. 911 * Topologies and topology options supported for testbeds. Options should always
912 * end with GNUNET_TESTBED_TOPOLOGY_OPTION_END
912 */ 913 */
913enum GNUNET_TESTBED_TopologyOption 914enum GNUNET_TESTBED_TopologyOption
914{ 915{
@@ -940,9 +941,8 @@ enum GNUNET_TESTBED_TopologyOption
940 GNUNET_TESTBED_TOPOLOGY_2D_TORUS, 941 GNUNET_TESTBED_TOPOLOGY_2D_TORUS,
941 942
942 /** 943 /**
943 * Random graph. Followed by the link density, that is the 944 * Random graph. Followed by the number of random links to be established
944 * percentage of links present in relation to a clique 945 * (unsigned int)
945 * (float).
946 */ 946 */
947 GNUNET_TESTBED_TOPOLOGY_ERDOS_RENYI, 947 GNUNET_TESTBED_TOPOLOGY_ERDOS_RENYI,
948 948
@@ -971,7 +971,23 @@ enum GNUNET_TESTBED_TopologyOption
971 /** 971 /**
972 * Read a topology from a given file. Followed by the name of the file (const char *). 972 * Read a topology from a given file. Followed by the name of the file (const char *).
973 */ 973 */
974 GNUNET_TESTBED_TOPOLOGY_FROM_FILE 974 GNUNET_TESTBED_TOPOLOGY_FROM_FILE,
975
976 /**
977 * The options should always end with this
978 */
979 GNUNET_TESTBED_TOPOLOGY_OPTION_END,
980
981 /* The following are not topologies but influence how the topology has to be
982 setup. These options should follow the topology specific options (if
983 required by the chosen topology). Note that these should be given before
984 GNUNET_TESTBED_TOPOLOGY_OPTION_END */
985
986 /**
987 * Disable automatic retrying for failed overlay connections. The default is
988 * to always retry failed overlay connections. This parameter takes no options.
989 */
990 GNUNET_TESTBED_TOPOLOGY_DISABLE_AUTO_RETRY
975}; 991};
976 992
977 993