summaryrefslogtreecommitdiff
path: root/src/core/global.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2024-09-09 08:38:13 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2024-09-09 08:38:13 (GMT)
commite3ce461fec70fd638b415edef4ce3aa9d939d772 (patch)
treeb6e40f94525b7a66cd80cca7ea6c2ca999322df5 /src/core/global.h
parentcd583c040d6730d24fdbf4558bd6fdff98303c5b (diff)
Collect the quantity of data received or sent with cURL.
Diffstat (limited to 'src/core/global.h')
-rw-r--r--src/core/global.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/global.h b/src/core/global.h
index 61b7712..b861ad8 100644
--- a/src/core/global.h
+++ b/src/core/global.h
@@ -29,6 +29,12 @@
+/* Fournit les volumes d'octets échangés sur le réseau. */
+void get_network_stats(size_t *, size_t *);
+
+/* Augmente les volumes d'octets échangés sur le réseau. */
+void update_network_stats(size_t, size_t);
+
/* Définit le gestionnaire de traitements parallèles courant. */
void set_work_queue(/* __steal */GWorkQueue *);