aboutsummaryrefslogtreecommitdiff
path: root/crates/arti-relay/src/tasks/channel.rs
Commit message (Collapse)AuthorAgeFilesLines
* tor-proto: remove `CircNetParameters::extend_by_ed25519_id`Steven Engler2026-07-271-4/+1
| | | | | We never used this, it was just needed because we used to convert to a `CircParameters` which required this.
* arti-relay: add support for a `CreateRequestHandler`Steven Engler2026-04-081-0/+142
|
* Fix typosTobias Stoeckmann2026-03-241-1/+1
| | | | Typos found with codespell
* arti-relay: Allow clippy_unused_asyncGabriela Moldovan2026-01-271-0/+1
| | | | The code here is still WIP, no need to apply the lint yet.
* arti-relay: use `Void` for `TorRelay::run`Steven Engler2025-10-271-1/+1
|
* relay: Add channel housekeeping taskDavid Goulet2025-10-211-0/+63
This is a background task in charge of expiring closing channels and future work is to also prune duplicate channels. This is not used nor called at this commit, next commit will add the task handling. Part of #2217 Signed-off-by: David Goulet <[email protected]>