aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2024-01-12 14:14:47 +0000
committerNick Mathewson <nickm@torproject.org>2024-01-12 14:14:47 +0000
commitc18c56058d864d75e6a84b179fec2b89354fd8c8 (patch)
treeaff8a3fb53ab136e2cbf6d489a500890358f6f35
parentf6304630e8952b896496fd5e50339cafe556302a (diff)
parent9ec0af39d7359d109df4bcd1a6cd198c62b7d3ad (diff)
downloadarti-c18c56058d864d75e6a84b179fec2b89354fd8c8.tar.gz
arti-c18c56058d864d75e6a84b179fec2b89354fd8c8.zip
Merge branch 'hsservice-state-triage' into 'main'
tor-hsservice: Replace TODO HSS with references to gitlab issues. See merge request tpo/core/arti!1876
-rw-r--r--crates/tor-hsservice/src/state.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/tor-hsservice/src/state.rs b/crates/tor-hsservice/src/state.rs
index 876f4bb65..442edb54d 100644
--- a/crates/tor-hsservice/src/state.rs
+++ b/crates/tor-hsservice/src/state.rs
@@ -11,7 +11,7 @@ use crate::{HsIdPublicKeySpecifier, HsNickname};
/// A helper for managing the persistent state of hidden services.
//
-// TODO HSS decide what API we want here and implement it
+// TODO (#1220) decide what API we want here and implement it
// See https://gitlab.torproject.org/tpo/core/arti/-/merge_requests/1837#note_2977513
pub struct StateMgr {
/// The key manager
@@ -23,7 +23,7 @@ impl StateMgr {
pub fn new(keystore_dir: impl AsRef<Path>, permissions: &Mistrust) -> tor_keymgr::Result<Self> {
let arti_store = ArtiNativeKeystore::from_path_and_mistrust(&keystore_dir, permissions)?;
- // TODO HSS: make the default store configurable
+ // TODO (#1106): make the default store configurable
let default_store = arti_store;
let keymgr = KeyMgrBuilder::default()