aboutsummaryrefslogtreecommitdiff
path: root/crates/tor-proto/src/conflux.rs
Commit message (Collapse)AuthorAgeFilesLines
* proto: Move abstract conflux handlers outside of the client module.Gabriela Moldovan2025-09-041-0/+2
| | | | | | | | | | This moves the shared types under `tor_proto::conflux`. Note: the shared types currently import `CircuitCmd` from `client`. A future commit will change the signature of `handle_msg` to return something other than `CircuitCmd` (this will also improve readability, because in reality, that function can never return most `CircuitCmd` variants).
* proto: Move cmd_counts_towards_seqno to a new conflux module.Gabriela Moldovan2025-09-041-0/+54
`tor_proto::conflux` is where the shared conflux logic will live. Soon the generic parts of the conflux handlers will be moved there (whereas the client-specific `AbstractConfluxMsgHandler` impl will continue living under `tor_proto::client`).