This is an automated email from the git hooks/post-receive script.
dgoulet pushed a change to branch main in repository tor.
from 863428d753 Merge branch 'tor-gitlab/mr/627' new d634a5ebc7 relay: Remove unused conn->ext_or_conn_id new fb206d284c Merge branch 'maint-0.4.7' new 87e820a0c5 metrics: Add stats for num circ reaching max cell outq new c565ef9c58 metrics: Add running average of CC cwnd when exiting slow start new a0e72fcb97 metrics: Add running average of CC cwnd when closing circuit new 62ce557b0b metrics: Add stats when reaching vegas delta or ss_cwnd_max new f270d20cb0 changes: Add file for ticket 40708 new 83fdaff7c0 metrics: Add running average of CC cwnd in slow start when closing circuit new 2f7e05d89d metrics: Add stats when the clock stalls. new fec9757a37 metrics: Add flow control metrics. new 2066e0494c math: Replace naughty macro by an inline function new fde87096c3 Merge branch 'tor-gitlab/mr/650' into maint-0.4.7 new 2adc73afdb Merge branch 'maint-0.4.7' new 00633bc619 metrics: Report amount of cwnd drop from delta and gamma new 56ee2131f1 Merge branch 'maint-0.4.7'
The 15 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference.
Summary of changes: changes/ticket40708 | 3 + src/core/or/circuitlist.c | 34 +++++++++ src/core/or/circuitlist.h | 4 ++ src/core/or/congestion_control_common.c | 11 +++ src/core/or/congestion_control_common.h | 1 + src/core/or/congestion_control_flow.c | 25 +++++++ src/core/or/congestion_control_flow.h | 6 ++ src/core/or/congestion_control_vegas.c | 47 +++++++++++++ src/core/or/congestion_control_vegas.h | 6 ++ src/core/or/relay.c | 2 + src/core/or/relay.h | 1 + src/feature/relay/relay_metrics.c | 119 +++++++++++++++++++++++++++++++- src/lib/math/include.am | 3 +- src/lib/math/stats.h | 22 ++++++ 14 files changed, 281 insertions(+), 3 deletions(-) create mode 100644 changes/ticket40708 create mode 100644 src/lib/math/stats.h