| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| | * | | | | | release: Bump `arti-*` and `tor-*` crates to 0.39.0 | Wesley Aptekar-Cassels | 2026-02-02 | 65 | -590/+590 | |
| |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Done via: ``` for crate in $(./maint/list-crates | rg '^(tor|arti-)'); do cargo set-version -p $crate 0.39.0 done ``` | |||||
| * | | | | | Merge branch 'legacy-port-config' into 'main' | wesleyac | 2026-02-02 | 7 | -209/+34 | |
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | arti: Remove `proxy.socks_port` and `proxy.dns_port` Closes #2300 See merge request tpo/core/arti!3622 | |||||
| | * | | | | | tor-config: remove `resolve_alternative_specs` function | Steven Engler | 2026-02-01 | 2 | -81/+1 | |
| | | | | | | | ||||||
| | * | | | | | web: fix reference to `proxy.socks_port` | Steven Engler | 2026-01-29 | 1 | -2/+2 | |
| | | | | | | | ||||||
| | * | | | | | arti: remove `resolve_listen_port!` macro | Steven Engler | 2026-01-29 | 2 | -38/+5 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I'm undecided whether we want to keep `resolve_alternative_specs` around, but it seems possible/likely that we'll want it in the future, so I think we can keep it. | |||||
| | * | | | | | arti: remove deprecated `proxy.dns_port` config option | Steven Engler | 2026-01-29 | 4 | -20/+6 | |
| | | | | | | | ||||||
| | * | | | | | arti: remove deprecated `proxy.socks_port` config option | Steven Engler | 2026-01-29 | 4 | -21/+11 | |
| | | | | | | | ||||||
| | * | | | | | arti: small changes to socks/dns listen config tests | Steven Engler | 2026-01-29 | 1 | -16/+13 | |
| | | | | | | | ||||||
| | * | | | | | arti: relax '_listen'/'_port' config compat tests | Steven Engler | 2026-01-29 | 1 | -40/+2 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is in preparation for removing the `listen_port` and `dns_port` config options. | |||||
| | * | | | | | arti: reword+reformat warning message | Steven Engler | 2026-01-29 | 1 | -1/+4 | |
| | | | | | | | ||||||
| * | | | | | | Merge branch 'decouple-cert-cycle' into 'main' | Nick Mathewson | 2026-02-02 | 27 | -207/+405 | |
| |\ \ \ \ \ \ | |_|_|/ / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Refactor crate dependencies; improve rtcompat key API to use TlsCertAndKey Closes #2330 See merge request tpo/core/arti!3618 | |||||
| | * | | | | | rtcompat: tweaks to no-tls-server case. | Nick Mathewson | 2026-02-02 | 1 | -0/+9 | |
| | | | | | | | ||||||
| | * | | | | | rtcompat: Improved tls-server key/cert handling. | Nick Mathewson | 2026-02-02 | 4 | -86/+35 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Now that we can admit to knowing about tor-cert-x509, we can use TlsCertAndKeys to simplify everything. | |||||
| | * | | | | | rtcompat: restore tls-server test. | Nick Mathewson | 2026-02-02 | 3 | -10/+6 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Now that tor-cert-x509 is its own crate, we can use that, and avoid the circular dependency. Closes #2330. | |||||
| | * | | | | | Cargo.toml: Re-order crates so that tor-rtcompat can depend on tor-cert | Nick Mathewson | 2026-02-02 | 1 | -3/+3 | |
| | | | | | | | ||||||
| | * | | | | | llcrypto: Depend on tor-memquota-cost, not tor-memquota. | Nick Mathewson | 2026-02-02 | 5 | -7/+7 | |
| | | | | | | | ||||||
| | * | | | | | memquota: Extract HasMemoryCost and derive to new crate. | Nick Mathewson | 2026-02-02 | 13 | -85/+215 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | This will help resolve some dependencies in our graph. | |||||
| | * | | | | | cert: Extract x509 code into new tor-cert-x509 crate. | Nick Mathewson | 2026-02-02 | 7 | -19/+133 | |
| |/ / / / / | ||||||
| * | | | | | Merge branch 'main' into 'main' | gabi-250 | 2026-02-02 | 18 | -19/+18 | |
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | fix(minver): Update paste dependency to be minver compatible See merge request tpo/core/arti!3610 | |||||
| | * | | | | | Remove paste from downgrade-dependencies | sjcobb | 2026-02-02 | 1 | -2/+1 | |
| | | | | | | | ||||||
| | * | | | | | fix(minver): Update paste dependency to be minver compatible | Samuel Cobb | 2026-01-26 | 17 | -17/+17 | |
| | | | | | | | ||||||
| * | | | | | | Merge branch 'ctor-migrate-test-fixes' into 'main' | opara | 2026-02-02 | 2 | -8/+16 | |
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | cli_tests: Minor fixes and clarifications See merge request tpo/core/arti!3623 | |||||
| | * | | | | | | cli_tests: Rename tests for clarity and consistency | Gabriela Moldovan | 2026-02-02 | 1 | -3/+3 | |
| | | | | | | | | ||||||
| | * | | | | | | cli_tests: Insert spacing between top-level items | Gabriela Moldovan | 2026-02-02 | 1 | -0/+8 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | For readability. | |||||
| | * | | | | | | cli_tests: Fix typo in test name | Gabriela Moldovan | 2026-02-02 | 1 | -2/+2 | |
| | | | | | | | | ||||||
| | * | | | | | | cli_tests: Clarify a comment in ctor-migrate test | Gabriela Moldovan | 2026-02-02 | 1 | -1/+1 | |
| | | | | | | | | ||||||
| | * | | | | | | cli_tests: Rename test closure for clarity | Gabriela Moldovan | 2026-02-02 | 1 | -3/+3 | |
| |/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | The previous name was misleading (the closure asserts the exact opposite). | |||||
| * | | | | | | Merge branch 'hsc-migrate-test' into 'main' | gabi-250 | 2026-02-02 | 25 | -91/+681 | |
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add integration test suite for `hsc ctor-migrate` subcommand See merge request tpo/core/arti!3544 | |||||
| | * | | | | | | Add integration test suite for `hsc ctor-migrate` subcommand | hjrgrn | 2026-02-02 | 25 | -91/+681 | |
| |/ / / / / / | ||||||
| * | | | | | | Merge branch 'release-2.0.0-fixup-features' into 'main' | wesleyac | 2026-01-29 | 4 | -0/+4 | |
| |\ \ \ \ \ \ | |_|/ / / / |/| | | | | | | | | | | | | | | | | | release: run fixup-features. See merge request tpo/core/arti!3620 | |||||
| | * | | | | | release: run fixup-features. | Wesley Aptekar-Cassels | 2026-01-29 | 4 | -0/+4 | |
| | | | | | | | ||||||
| * | | | | | | Merge branch 'error-handle-invalid-ports-for-arti-proxy' into 'main' | opara | 2026-01-30 | 1 | -2/+8 | |
| |\ \ \ \ \ \ | |/ / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | arti: Do not panic when invalid ports are given as arguments to proxy Closes #2333 See merge request tpo/core/arti!3621 | |||||
| | * | | | | | arti: Do not panic when invalid ports are given as arguments to proxy | Niel Duysters | 2026-01-30 | 1 | -2/+8 | |
| |/ / / / / | | | | | | | | | | | | | | | | Use anyhow::Context to wrap error in useful message. | |||||
| * | | | | | Merge branch 'tls-server' into 'main' | Nick Mathewson | 2026-01-29 | 14 | -13/+617 | |
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Implement TLS server support for rustls in rtcompat. Closes #2316 See merge request tpo/core/arti!3614 | |||||
| | * | | | | | rtcompat: Temporarily disable tls-server test. | Nick Mathewson | 2026-01-29 | 3 | -5/+7 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It would introduce a circular dev-dependency, which is not well-supported by cargo publish. I hope to resolve this and re-enable the test in #2330. | |||||
| | * | | | | | rustls: Improve test output; use standard warnings. | Nick Mathewson | 2026-01-29 | 1 | -4/+16 | |
| | | | | | | | ||||||
| | * | | | | | rtcompat: Clarify sni_hostname for server connections. | Nick Mathewson | 2026-01-29 | 1 | -1/+4 | |
| | | | | | | | ||||||
| | * | | | | | rtcompat: Clarify None returns from own_certificate. | Nick Mathewson | 2026-01-29 | 2 | -1/+11 | |
| | | | | | | | ||||||
| | * | | | | | Run "cargo sort" on tor-rtcompat. | Nick Mathewson | 2026-01-29 | 1 | -7/+6 | |
| | | | | | | | ||||||
| | * | | | | | rtcompat: Unit test for TLS server code. | Nick Mathewson | 2026-01-29 | 3 | -2/+81 | |
| | | | | | | | ||||||
| | * | | | | | rtmock: Implement server support. | Nick Mathewson | 2026-01-29 | 2 | -10/+49 | |
| | | | | | | | ||||||
| | * | | | | | rustls: add an error for unimplemented tls server support. | Nick Mathewson | 2026-01-29 | 4 | -5/+20 | |
| | | | | | | | ||||||
| | * | | | | | rtcompat: Implement TLS server support for rustls. | Nick Mathewson | 2026-01-29 | 6 | -10/+277 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | Closes #2316. | |||||
| | * | | | | | rtcompat: new server-related members on TlsProvider trait. | Nick Mathewson | 2026-01-29 | 11 | -4/+159 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | These are as yet unimplemented; there's a stub type for the providers (nativetls) that won't actually have them. | |||||
| | * | | | | | rtcompat: new own_certificate method on CertifiedConn trait | Nick Mathewson | 2026-01-29 | 5 | -0/+23 | |
| |/ / / / / | ||||||
| * | | | | | Merge branch 'generic-reactor3' into 'main' | David Goulet | 2026-01-29 | 26 | -1861/+3626 | |
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | proto: Add new generic circuit reactor See merge request tpo/core/arti!3612 | |||||
| | * | | | | | proto: Allow unused async in WIP reactor code | Gabriela Moldovan | 2026-01-29 | 1 | -0/+2 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | This will need to become async soon. | |||||
| | * | | | | | proto: Remove unused async from relay reactor | Gabriela Moldovan | 2026-01-29 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | Fixes a clippy warning | |||||
| | * | | | | | proto: Document that the hop list is shared with the BWD | Gabriela Moldovan | 2026-01-29 | 1 | -0/+11 | |
| | | | | | | | ||||||
| | * | | | | | proto: Rename the FWD -> BWD channel | Gabriela Moldovan | 2026-01-29 | 3 | -18/+18 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In the backward reactor, we call this the `forward_reactor_rx` (because it receives commands from the foward reactor), and in the forward reactor we call it `backward_reactor_tx` (because it sends commands to the backward reactor). | |||||
