| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Switch Cargo.toml files to edition 2024. | Nick Mathewson | 2025-08-07 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | First, run ``` git grep -l "^edition =" | xargs perl -i -pe 's/^edition *=.*/edition = "2024"/;' ``` Second, manually verify that all Cargo.toml files have changed, and nothing else has changed. Third, run cargo fmt again. | ||||
| * | Fix AF_UNIX terminology in docs, comments, and error messages | Ian Jackson | 2025-03-24 | 1 | -1/+1 |
| | | |||||
| * | squash! Upgrade rand dependency to 0.9. | Nick Mathewson | 2025-03-18 | 1 | -1/+1 |
| | | | | | - `rand::thread_rng()` has been deprecated and renamed to `rand::rng()` | ||||
| * | rpc-connect: remove todo; confirm that we do want to mkdir. | Nick Mathewson | 2025-01-27 | 1 | -1/+1 |
| | | |||||
| * | rpc-connect: Detect and decline connpts with invalid "auth" feields | Nick Mathewson | 2025-01-27 | 1 | -1/+1 |
| | | |||||
| * | rpc: Refactor Cookie and UnloadedCookie into a single type. | Nick Mathewson | 2025-01-15 | 1 | -3/+3 |
| | | |||||
| * | rpc: consolodate naming of "inherent" auth. | Nick Mathewson | 2025-01-15 | 1 | -1/+1 |
| | | | | | | | | | | We don't want to call this "unix path" anywhere, since it corresponds to _any_ case where the ability to negotiate a successful connection means that the client is authorized. We also don't want to call it "none": The authentication is inherent to the connection, not nonexistent. | ||||
| * | rpc: Keep Cookie in an Arc. | Nick Mathewson | 2025-01-15 | 1 | -2/+6 |
| | | | | | | Since this is a secret value, it's probably best not to copy it all over the place. | ||||
| * | tor-rpc-connect: move cookie auth support to its own module. | Nick Mathewson | 2025-01-15 | 1 | -1/+1 |
| | | |||||
| * | Rename Guard=>ListenerGuard. | Nick Mathewson | 2024-12-19 | 1 | -4/+4 |
| | | |||||
| * | rpc-connect: Explain locking rationale better. | Nick Mathewson | 2024-12-19 | 1 | -3/+12 |
| | | |||||
| * | rpc-connect: Use try_lock when acquiring fslock | Nick Mathewson | 2024-12-19 | 1 | -1/+4 |
| | | | | | | This lets us bail when another process has bound to our connect point, rather than blocking indefinitely. | ||||
| * | connpt: Make unix socket handling more robust. | Nick Mathewson | 2024-12-19 | 1 | -2/+65 |
| | | | | | | | | | | | 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. | ||||
| * | rpc-connect: fix another very typoed line | Nick Mathewson | 2024-12-19 | 1 | -1/+1 |
| | | |||||
| * | connect point: handle unrecognized auth variants. | Nick Mathewson | 2024-11-19 | 1 | -1/+1 |
| | | |||||
| * | connect point: Add server support. | Nick Mathewson | 2024-11-19 | 1 | -0/+69 |
| ("Server support" here means binding to a socket and reading a cookie file.) | |||||
