summaryrefslogtreecommitdiff
path: root/crates/tor-congestion/README.md
Commit message (Collapse)AuthorAgeFilesLines
* Bring back tor-congestion empty with a tombstoneDavid Goulet2025-01-161-0/+5
| | | | Signed-off-by: David Goulet <[email protected]>
* crates: Remove tor-congestionDavid Goulet2025-01-161-15/+0
| | | | | | | | | Crate is unused and most of its code will be reworked and folded into tor-proto in the future commit with the Congestion Control work. Related #534 Signed-off-by: David Goulet <[email protected]>
* doc: consistent summary line for the READMEsEmil Engler2022-12-201-1/+1
| | | | | This commit introduces a consistency to the summary line of all README.md files in each and every crate.
* Update README.md files with "readmes" tool.Nick Mathewson2022-08-311-1/+15
|
* tor-congestion: implement the RTT estimation algorithm from prop#324eta2022-08-111-0/+1
This commit implements the round-trip-time estimation algorithm from Tor proposal 324, validating the implementation against the test vectors found in C tor. (Note that at the time of writing, the new test vectors may not be committed to C tor yet, but they will be soon.) This also adds the necessary consensus parameters to `NetParameters`. Some of them have been renamed in order to (hopefully) make them more understandable.