summaryrefslogtreecommitdiff
path: root/crates/tor-rpc-connect/src/client.rs
Commit message (Collapse)AuthorAgeFilesLines
* connpt: Make unix socket handling more robust.Nick Mathewson2024-12-191-1/+1
| | | | | | | | | | Grab an associated lock file... - ... then delete the socket file (if it's present) ... - ... then bind to it. On exit: - remove the socket - then drop the lock.
* connpt: note an opportunity to save some fds.Nick Mathewson2024-12-091-0/+3
|
* connpts: duplicate socket before returning.Nick Mathewson2024-12-091-15/+24
| | | | | (We want a separate read and write socket before we return, and once we've done the type-erasure, we can't do try_clone().)
* connect point: handle unrecognized auth variants.Nick Mathewson2024-11-191-1/+1
|
* connect point: Add client support.Nick Mathewson2024-11-191-0/+82
("Client support" here means connecting to a socket and reading a cookie file.)