aboutsummaryrefslogtreecommitdiff
path: root/crates/arti/src/rpc/superuser.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/arti/src/rpc/superuser.rs')
-rw-r--r--crates/arti/src/rpc/superuser.rs8
1 files changed, 7 insertions, 1 deletions
diff --git a/crates/arti/src/rpc/superuser.rs b/crates/arti/src/rpc/superuser.rs
index c8a3a5cb8..9e36e608f 100644
--- a/crates/arti/src/rpc/superuser.rs
+++ b/crates/arti/src/rpc/superuser.rs
@@ -13,7 +13,7 @@ use std::sync::Arc;
use tor_rpcbase::{self as rpc};
use tor_rtcompat::Runtime;
-use crate::reload_cfg::LaunchableTorClient;
+use crate::reload_cfg::{CfgMgr, LaunchableTorClient};
/// An object representing superuser access to Arti over an RPC session.
///
@@ -27,6 +27,10 @@ pub(super) struct RpcSuperuser<R: Runtime> {
/// A wrapper around `tor_client` with the ability to launch a deferred-bootstrap client.
launchable: Arc<LaunchableTorClient<R>>,
+
+ /// A handle to the manager for configuration information.
+ #[allow(unused)] // TODO(rpc) remove
+ cfg_mgr: Arc<CfgMgr<R>>,
}
impl<R: Runtime> RpcSuperuser<R> {
@@ -34,10 +38,12 @@ impl<R: Runtime> RpcSuperuser<R> {
pub(super) fn new(
tor_client: Arc<TorClient<R>>,
launchable: Arc<LaunchableTorClient<R>>,
+ cfg_mgr: Arc<CfgMgr<R>>,
) -> Self {
RpcSuperuser {
tor_client,
launchable,
+ cfg_mgr,
}
}