diff options
author | Nick Mathewson <nickm@torproject.org> | 2020-07-10 09:11:12 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2020-07-10 09:27:42 -0400 |
commit | 3f2de0bcca301785c5f1911354f2d3f4d5ba1708 (patch) | |
tree | 1b7d452c8a8e8eeca7e3fcf2f71bfd435d43024e /src/feature/stats/connstats.h | |
parent | 50bf2520b33eb9f477c1b8989264667c5b587a01 (diff) | |
download | tor-3f2de0bcca301785c5f1911354f2d3f4d5ba1708.tar.gz tor-3f2de0bcca301785c5f1911354f2d3f4d5ba1708.zip |
Change connstats.c identifers to start with conn_stats
This is an automated commit, generated by this command:
./scripts/maint/rename_c_identifier.py \
rep_hist_conn_stats_init conn_stats_init \
rep_hist_note_or_conn_bytes conn_stats_note_or_conn_bytes \
rep_hist_reset_conn_stats conn_stats_reset \
rep_hist_format_conn_stats conn_stats_format \
rep_hist_conn_stats_write conn_stats_save \
rep_hist_conn_stats_term conn_stats_terminate \
bidi_map_free_all conn_stats_free_all
Diffstat (limited to 'src/feature/stats/connstats.h')
-rw-r--r-- | src/feature/stats/connstats.h | 14 |
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) */ |