aboutsummaryrefslogtreecommitdiff
path: root/src/util/benchmark.h
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2019-02-28 18:13:49 +0100
committerFlorian Dold <florian.dold@gmail.com>2019-02-28 18:13:58 +0100
commit5a4d49e84c6829741f6e288088e08c7d0332df49 (patch)
tree5c22071d970b79dc950ad8856fb22c6c3d53e38f /src/util/benchmark.h
parent98cd2e57b35c8cc1eb94ff7f28c1df63846dd5eb (diff)
downloadgnunet-5a4d49e84c6829741f6e288088e08c7d0332df49.tar.gz
gnunet-5a4d49e84c6829741f6e288088e08c7d0332df49.zip
add bytes recv/sent to URL request benchmarking
Diffstat (limited to 'src/util/benchmark.h')
-rw-r--r--src/util/benchmark.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/util/benchmark.h b/src/util/benchmark.h
index 36f57febe..4148ac655 100644
--- a/src/util/benchmark.h
+++ b/src/util/benchmark.h
@@ -76,6 +76,16 @@ struct UrlRequestData
76 uint64_t count; 76 uint64_t count;
77 77
78 /** 78 /**
79 * How many bytes were sent in total to request the URL.
80 */
81 uint64_t bytes_sent;
82
83 /**
84 * How many bytes were received in total as response to requesting this URL.
85 */
86 uint64_t bytes_received;
87
88 /**
79 * Total time spent requesting this URL. 89 * Total time spent requesting this URL.
80 */ 90 */
81 struct GNUNET_TIME_Relative time; 91 struct GNUNET_TIME_Relative time;