summaryrefslogtreecommitdiff
path: root/crates/arti-relay/src/tasks.rs
Commit message (Collapse)AuthorAgeFilesLines
* Fix grammar typosTobias Stoeckmann2026-03-151-1/+1
|
* relay: Add a crypto task for key rotationDavid Goulet2026-02-231-0/+1
| | | | | | | | | | | | | This task crypto module has a rotate key task that is in charge of rotating keys from our KeyMgr based on the valid until. To do so, we add a RotatableKeySpec trait to help us specify our to rotate a specific key. Allows us to have a generic rotate/generate function for all our keys. Task runs every 60 seconds. Taken from C-tor. Signed-off-by: David Goulet <[email protected]>
* arti-relay: add OR port listener taskSteven Engler2025-11-051-0/+1
| | | | | This does not yet get the OR port from the config, and the channel manager doesn't yet do anything with the incoming connection.
* relay: Add channel housekeeping taskDavid Goulet2025-10-211-0/+8
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]>