This is an automated email from the git hooks/post-receive script.
dgoulet pushed a change to branch maint-0.4.7 in repository tor.
from 619dd35321 sandbox: Add my-consensus-<flavor-name> to sandbox for dirauth new d634a5ebc7 relay: Remove unused conn->ext_or_conn_id 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 00633bc619 metrics: Report amount of cwnd drop from delta and gamma
The 12 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/ticket40648 | 3 + changes/ticket40708 | 3 + src/core/mainloop/connection.c | 2 - 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/or_connection_st.h | 2 - src/core/or/relay.c | 2 + src/core/or/relay.h | 1 + src/feature/relay/ext_orport.c | 13 ---- src/feature/relay/ext_orport.h | 4 -- src/feature/relay/relay_metrics.c | 119 +++++++++++++++++++++++++++++++- src/lib/math/include.am | 3 +- src/lib/math/stats.h | 22 ++++++ 19 files changed, 284 insertions(+), 24 deletions(-) create mode 100644 changes/ticket40648 create mode 100644 changes/ticket40708 create mode 100644 src/lib/math/stats.h