summaryrefslogtreecommitdiff
path: root/src/feature/stats/connstats.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/feature/stats/connstats.h')
-rw-r--r--src/feature/stats/connstats.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/feature/stats/connstats.h b/src/feature/stats/connstats.h
index 2abe8d7362..26ff74cfd3 100644
--- a/src/feature/stats/connstats.h
+++ b/src/feature/stats/connstats.h
@@ -12,13 +12,13 @@
#ifndef TOR_FEATURE_STATS_CONNSTATS_H
#define TOR_FEATURE_STATS_CONNSTATS_H
-void rep_hist_conn_stats_init(time_t now);
-void rep_hist_note_or_conn_bytes(uint64_t conn_id, size_t num_read,
+void conn_stats_init(time_t now);
+void conn_stats_note_or_conn_bytes(uint64_t conn_id, size_t num_read,
size_t num_written, time_t when);
-void rep_hist_reset_conn_stats(time_t now);
-char *rep_hist_format_conn_stats(time_t now);
-time_t rep_hist_conn_stats_write(time_t now);
-void rep_hist_conn_stats_term(void);
-void bidi_map_free_all(void);
+void conn_stats_reset(time_t now);
+char *conn_stats_format(time_t now);
+time_t conn_stats_save(time_t now);
+void conn_stats_terminate(void);
+void conn_stats_free_all(void);
#endif /* !defined(TOR_FEATURE_STATS_CONNSTATS_H) */