| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | arti: Fix compilation of http-connect without rpc | Nick Mathewson | 2026-08-10 | 1 | -1/+1 |
| | | | | | Closes #2653. | ||||
| * | Use "extend" for arti ResponseBuilder extension trait | Ian Jackson | 2026-07-16 | 1 | -13/+3 |
| | | |||||
| * | maint: Run maint/add_warning to deny string slices | Clara Engler | 2026-06-09 | 1 | -0/+1 |
| | | | | | | | | | | | | | This commit executes maint/add_warning with the just added change to deny string slices except in tests. I recommend auditing this by checking out the previous commit followed by running the script yourself and then verifying that the diff is identical to this commit. This commit makes cargo clippy fail. We will add exceptions in the next commit. | ||||
| * | Make all TorClient constructors wrap the TorClient in an Arc. | Nick Mathewson | 2026-05-13 | 1 | -1/+2 |
| | | | | | | | This is part of rationalizing the structure of TorClient so we can refactor startup logic, and so that RPC code can reason about object identity. See #2469. | ||||
| * | arti: Add an option to disable http_connect. | Nick Mathewson | 2026-03-25 | 1 | -0/+1 |
| | | | | | | | | | | This option affects all socks listeners, because: - We don't have a convenient way to associate an option with each port. - The main purpose of having this option is as a switch in case we discover a major problem with this code. | ||||
| * | arti: Pass the request by reference | Gabriela Moldovan | 2026-01-27 | 1 | -2/+2 |
| | | | | | This resolves a newly-triggered lint. | ||||
| * | arti: Make internal helper synchronous | Gabriela Moldovan | 2026-01-27 | 1 | -2/+2 |
| | | |||||
| * | arti: Extract function to find a ProtoError source | Nick Mathewson | 2026-01-22 | 1 | -11/+5 |
| | | |||||
| * | Merge branch 'ticket_2259' into 'main' | Nick Mathewson | 2025-11-25 | 1 | -1/+26 |
| |\ | | | | | | | | | | | | | arti: Put supported request headers in Tor-Capabilties Closes #2259 See merge request tpo/core/arti!3473 | ||||
| | * | arti: Put supported request headers in Tor-Capabilties | Nick Mathewson | 2025-11-18 | 1 | -1/+26 |
| | | | | | | | | | | | | | This is for spec conformance; it is a missing piece of prop365. Closes #2259. | ||||
| * | | http-connect: use end reason for http status if possible | Nick Mathewson | 2025-11-24 | 1 | -1/+38 |
| | | | | | | | | | | | The spec includes a direct conversion from END reason fields to HTTP status codes, so we should follow it if we have an END reason. | ||||
| * | | http_connect: Report end reasons for HTTP CONNECT failures. | Nick Mathewson | 2025-11-19 | 1 | -6/+27 |
| | | | |||||
| * | | tor-error: Provide a more reasonable API for http status codes. | Nick Mathewson | 2025-11-18 | 1 | -2/+2 |
| | | | |||||
| * | | tor-error: Add support for ErrorKind->HTTP status conversion | Nick Mathewson | 2025-11-18 | 1 | -78/+2 |
| |/ | | | | | | | It makes more sense to have the conversion here, so it can use an exhaustive match over ErrorKind. This isn't the final API; I'm just moving the code from `arti`. | ||||
| * | http_connect: Add AsyncReadExt to fix compilation. | Nick Mathewson | 2025-11-13 | 1 | -2/+2 |
| | | |||||
| * | Merge branch 'http_xsprobe' into 'main' | Nick Mathewson | 2025-11-13 | 1 | -1/+142 |
| |\ | | | | | | | | | Validate Host header for non-CONNECT requests to HTTP CONNECT port See merge request tpo/core/arti!3429 | ||||
| | * | http_connect: prevent tests from colliding on directories | Nick Mathewson | 2025-11-13 | 1 | -5/+16 |
| | | | |||||
| | * | http_connect: fix to conform to MSRV | Nick Mathewson | 2025-11-13 | 1 | -1/+1 |
| | | | |||||
| | * | http_connect: add a test for Host validation. | Nick Mathewson | 2025-11-13 | 1 | -0/+73 |
| | | | |||||
| | * | Validate Host header for non-CONNECT requests to HTTP CONNECT port | Nick Mathewson | 2025-11-03 | 1 | -1/+58 |
| | | | | | | | | | | | | | | | This validation makes it harder for an adversarial webpage to probe for the version of arti and its capabilities. See torspec!437. | ||||
| * | | Add a notion of isolation strong enough to enable long-lived circuits. | Nick Mathewson | 2025-11-12 | 1 | -0/+22 |
| | | | | | | | | | Part of prop368. | ||||
| * | | Fix name of clippy lint to unchecked_time_subtraction (2) | Ian Jackson | 2025-11-06 | 1 | -1/+1 |
| | | | | | | | | | Run maint/add_warning | ||||
| * | | all: replace all uses of `futures::task::SpawnExt` with `tor_rtcompat::SpawnExt` | Steven Engler | 2025-11-04 | 1 | -1/+1 |
| | | | |||||
| * | | Replace copy_interactive with futures-copy. | Nick Mathewson | 2025-10-30 | 1 | -32/+18 |
| |/ | | | | | | | | This change lets us avoid spawning extra tasks (due to one-direction nature of copy_interactive), and avoid some lock contention (due to use of AsyncReadExt::split). Addresses part of #786. | ||||
| * | http_connect: Remove (most) X- prefixes. | Nick Mathewson | 2025-10-28 | 1 | -21/+38 |
| | | | | | | | We can't remove them all, since X-Tor-Stream-Isolation is recognized by C-Tor. I've added a non-deprecated Tor-Stream-Isolation that works indepenently. | ||||
| * | http_connect: write our own hyper-futures replacement | Nick Mathewson | 2025-10-28 | 1 | -4/+77 |
| | | |||||
| * | http_connect: Forbid non-empty OPTIONS bodies. | Nick Mathewson | 2025-10-28 | 1 | -0/+8 |
| | | |||||
| * | http_connect: validate casei behavior of HeaderMap. | Nick Mathewson | 2025-10-28 | 1 | -0/+36 |
| | | |||||
| * | http_connect: Declare that error messages are text/plain. | Nick Mathewson | 2025-10-28 | 1 | -1/+1 |
| | | |||||
| * | http_connect: Reject OPTIONS requests with bodies | Nick Mathewson | 2025-10-28 | 1 | -2/+11 |
| | | |||||
| * | http_connect: Implement stream isolation | Nick Mathewson | 2025-10-28 | 1 | -4/+74 |
| | | |||||
| * | http_connect: implement rpc support | Nick Mathewson | 2025-10-28 | 1 | -6/+76 |
| | | |||||
| * | http-connect: Implement X-Tor-Family-Preference | Nick Mathewson | 2025-10-28 | 1 | -5/+79 |
| | | |||||
| * | http_connect: Use consts for headers. | Nick Mathewson | 2025-10-28 | 1 | -4/+16 |
| | | |||||
| * | http_connect: Generate an X-Tor-Request-Failed header. | Nick Mathewson | 2025-10-28 | 1 | -2/+20 |
| | | |||||
| * | http_connect: Provide better status codes for ErrorKinds. | Nick Mathewson | 2025-10-28 | 1 | -4/+75 |
| | | |||||
| * | arti: Implement a "bilingual" HTTP CONNECT proxy. | Nick Mathewson | 2025-10-28 | 1 | -0/+325 |
| | | | | | | | | | | | | With his commit, our SOCKS ports now accept both SOCKS and HTTP CONNECT requests, per proposal 365. There are still some infelicities, marked with "XXXX" or "TODO". I've tested this with curl, though, and it works. :) Typo-fixes-by: Gabriela Moldovan <[email protected]> | ||||
| * | arti: Detect proxy protocol _before_ starting SOCKS. | Nick Mathewson | 2025-10-28 | 1 | -0/+5 |
| This will let us speak HTTP CONNECT as well; there is a stub for initiating an http proxy. | |||||
