diff options
Diffstat (limited to 'crates/tor-hsservice')
| -rw-r--r-- | crates/tor-hsservice/src/rend_handshake.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/tor-hsservice/src/rend_handshake.rs b/crates/tor-hsservice/src/rend_handshake.rs index b5fb41c1a..26db9dbc6 100644 --- a/crates/tor-hsservice/src/rend_handshake.rs +++ b/crates/tor-hsservice/src/rend_handshake.rs @@ -10,7 +10,7 @@ use tor_cell::relaycell::{ use tor_circmgr::{ServiceOnionServiceDataTunnel, build::onion_circparams_from_netparams}; use tor_linkspec::{decode::Strictness, verbatim::VerbatimLinkSpecCircTarget}; use tor_proto::{ - circuit::handshake::{ + client::circuit::handshake::{ self, hs_ntor::{self, HsNtorHkdfKeyGenerator}, }, @@ -196,7 +196,7 @@ impl IncomingStreamRequestFilter for RequestFilter { fn disposition( &mut self, _ctx: &tor_proto::client::stream::IncomingStreamRequestContext<'_>, - circ: &tor_proto::circuit::ClientCircSyncView<'_>, + circ: &tor_proto::client::circuit::ClientCircSyncView<'_>, ) -> tor_proto::Result<tor_proto::client::stream::IncomingStreamRequestDisposition> { if circ.n_open_streams() >= self.max_concurrent_streams { // TODO: We may want to have a way to send back an END message as |
