aboutsummaryrefslogtreecommitdiff
path: root/crates/tor-proto/src/client/stream/resolve.rs
Commit message (Collapse)AuthorAgeFilesLines
* proto: Add crate-level exports for two extra stream types (fmt)Gabriela Moldovan2026-06-171-1/+1
|
* Merge branch 'minor-doc-fix' into 'main'gabi-2502026-06-021-1/+1
|\ | | | | | | | | proto: Fix typo in ResolveCmdChecker docs See merge request tpo/core/arti!4035
| * proto: Fix typo in ResolveCmdChecker docsGabriela Moldovan2026-05-281-1/+1
| | | | | | | | This returns a boxed `ResolveCmdChecker`, not a `DataCmdChecker`.
* | proto: Replace outdated references to RawCellStreamGabriela Moldovan2026-05-281-2/+2
|/ | | | | `RawCellStream` was removed long ago, in c559754116678866eabe525f5b189b50cc78b5cc.
* proto: Fix docs to refer to the right stream:: paths.Gabriela Moldovan2025-10-161-1/+1
|
* proto: Replace fully-qualified paths with use (fmt).Gabriela Moldovan2025-10-161-4/+1
|
* proto: Replace fully-qualified paths with use.Gabriela Moldovan2025-10-161-4/+4
|
* proto: Reformat imports post-move.Gabriela Moldovan2025-10-161-1/+1
|
* proto: Avoid crate-pub reexports of shared types from the client module.Gabriela Moldovan2025-10-161-5/+4
| | | | | This makes it easier to see which parts are implementation-agnostic (i.e. do not import from crate::client).
* proto: Add prop349 note about the resolve stream handler.Gabriela Moldovan2025-08-201-0/+14
|
* proto: Move the `stream` module under `client` (breaking).Gabriela Moldovan2025-08-181-0/+102
The `stream` module is client-specific, for the most part, so I am moving it under `client`. Later on, we will factor out the parts that can be shared with the relay implementation. Note: this is a breaking change as the deleted `stream` module was `pub`. We could've kept the module and reexported from it the public types from `tor_proto::client::stream`, but I think it's better to have this `client` namespacing, because it makes the separation between the client and relay parts clearer.