diff options
Diffstat (limited to 'crates/tor-proto/src/client/reactor/control.rs')
| -rw-r--r-- | crates/tor-proto/src/client/reactor/control.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/crates/tor-proto/src/client/reactor/control.rs b/crates/tor-proto/src/client/reactor/control.rs index 48a7a75c2..e600bc161 100644 --- a/crates/tor-proto/src/client/reactor/control.rs +++ b/crates/tor-proto/src/client/reactor/control.rs @@ -267,7 +267,8 @@ pub(crate) enum CtrlCmd { fwd_lasthop: bool, rev_lasthop: bool, peer_id: path::HopDetail, - params: CircParameters, + // `CircParameters` is large and this command is test-only, so we box it. + params: Box<CircParameters>, done: ReactorResultChannel<()>, }, /// (tests only) Get the send window and expected tags for a given hop. |
