summaryrefslogtreecommitdiff
path: root/crates/tor-proto/src/streammap
Commit message (Collapse)AuthorAgeFilesLines
* tor-proto: fix flow control for half-streamsSteven Engler2026-05-071-48/+18
| | | | | | | | | | This moves the window-based flow control for half-streams out of the `HalfStream` and into the `HalfStreamWindowFlowCtrl` object. Now that it's applied only in `HalfStreamWindowFlowCtrl` and not generally for all half-streams, we no longer apply window-based flow control to half-streams when they're really using xon/xoff-based flow control.
* Fix name of clippy lint to unchecked_time_subtraction (2)Ian Jackson2025-11-061-1/+1
| | | | Run maint/add_warning
* proto: Move halfstream under streammapGabriela Moldovan2025-10-211-0/+247
That way we don't need to make halfstream `pub(crate)` (we only really use it in streammap, and in the client reactor, because of the `handle_msg()` kludge).