summaryrefslogtreecommitdiff
path: root/crates/arti/src/rpc.rs
Commit message (Collapse)AuthorAgeFilesLines
* RPC: Start on plumbing TorClient into our RPC codeNick Mathewson2023-05-041-2/+2
| | | | | Because of #837, we won't be able to work with _every_ TorClient<R>, so I'm only going to be using TorClient<PreferredRuntime> for now.
* RPC: Move the "listen" part of the RPC listener code to `arti`.Nick Mathewson2023-05-041-0/+55
Now there's a module in `arti` that runs the loop for an RPC listener. The part of the old `listener` module that made the framed connections is now part of the `Session` object. There is now yet another a temporary location for the pipe; we should pick something better. At least now it's configurable.