aboutsummaryrefslogtreecommitdiff
path: root/src/ats-tests/perf_ats.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-12-05 22:01:44 +0000
committerChristian Grothoff <christian@grothoff.org>2013-12-05 22:01:44 +0000
commit5a32c5a448d513f1dd1bbc5f5b0d06a3212b2315 (patch)
tree19a012bda89ecc96006b064d500586465f4ed141 /src/ats-tests/perf_ats.c
parentf107a417aec2a6bc120bc78e2510d847c53ca318 (diff)
downloadgnunet-5a32c5a448d513f1dd1bbc5f5b0d06a3212b2315.tar.gz
gnunet-5a32c5a448d513f1dd1bbc5f5b0d06a3212b2315.zip
-use doxygen-style comments on membes
Diffstat (limited to 'src/ats-tests/perf_ats.c')
-rw-r--r--src/ats-tests/perf_ats.c21
1 files changed, 16 insertions, 5 deletions
diff --git a/src/ats-tests/perf_ats.c b/src/ats-tests/perf_ats.c
index f572ce8a2..f52bcfb25 100644
--- a/src/ats-tests/perf_ats.c
+++ b/src/ats-tests/perf_ats.c
@@ -66,22 +66,33 @@ struct TestbedConnectOperation
66 */ 66 */
67struct BenchmarkState 67struct BenchmarkState
68{ 68{
69 /* Are we connected to ATS service of all peers: GNUNET_YES/NO */ 69 /**
70 * Are we connected to ATS service of all peers: GNUNET_YES/NO
71 */
70 int connected_ATS_service; 72 int connected_ATS_service;
71 73
72 /* Are we connected to CORE service of all peers: GNUNET_YES/NO */ 74 /**
75 * Are we connected to CORE service of all peers: GNUNET_YES/NO
76 */
73 int connected_COMM_service; 77 int connected_COMM_service;
74 78
75 /* Are we connected to all peers: GNUNET_YES/NO */ 79 /**
80 * Are we connected to all peers: GNUNET_YES/NO
81 */
76 int connected_PEERS; 82 int connected_PEERS;
77 83
78 /* Are we connected to all slave peers on CORE level: GNUNET_YES/NO */ 84 /**
85 * Are we connected to all slave peers on CORE level: GNUNET_YES/NO
86 */
79 int connected_CORE; 87 int connected_CORE;
80 88
81 /* Are we connected to CORE service of all peers: GNUNET_YES/NO */ 89 /**
90 * Are we connected to CORE service of all peers: GNUNET_YES/NO
91 */
82 int benchmarking; 92 int benchmarking;
83}; 93};
84 94
95
85/** 96/**
86 * Shutdown task 97 * Shutdown task
87 */ 98 */