Struct Socks5PeekRouter
pub struct Socks5PeekRouter<T, F = RejectService<(), NoSocks5RejectError>> { /* private fields */ }
Expand description
A Service
router that can be used to support
socks5 traffic as well as non-socks5 traffic.
By default non-socks5 traffic is rejected using RejectService
.
Use Socks5PeekRouter::with_fallback
to configure the fallback service.
This kind of router can be useful in case you want to have a proxy which supports for example both HTTP proxy requests as well socks5 proxy requests.
Implementations§
§impl<T> Socks5PeekRouter<T>
impl<T> Socks5PeekRouter<T>
pub fn new(socks5_acceptor: T) -> Socks5PeekRouter<T>
pub fn new(socks5_acceptor: T) -> Socks5PeekRouter<T>
Create a new Socks5PeekRouter
.
pub fn with_fallback<F>(self, fallback: F) -> Socks5PeekRouter<T, F>
pub fn with_fallback<F>(self, fallback: F) -> Socks5PeekRouter<T, F>
Attach a fallback Service
tp this Socks5PeekRouter
.
Trait Implementations§
§impl<T, F> Clone for Socks5PeekRouter<T, F>
impl<T, F> Clone for Socks5PeekRouter<T, F>
§fn clone(&self) -> Socks5PeekRouter<T, F>
fn clone(&self) -> Socks5PeekRouter<T, F>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl<T, F> Debug for Socks5PeekRouter<T, F>
impl<T, F> Debug for Socks5PeekRouter<T, F>
§impl<Stream, Response, T, F> Service<Stream> for Socks5PeekRouter<T, F>where
Stream: Stream + Unpin,
Response: Send + 'static,
T: Service<PeekStream<StackReader<rama_socks5::::server::peek::Socks5PeekStream::{constant#0}>, Stream>, Response = Response>,
<T as Service<PeekStream<StackReader<rama_socks5::::server::peek::Socks5PeekStream::{constant#0}>, Stream>>>::Error: Into<Box<dyn Error + Sync + Send>>,
F: Service<PeekStream<StackReader<rama_socks5::::server::peek::Socks5PeekStream::{constant#0}>, Stream>, Response = Response>,
<F as Service<PeekStream<StackReader<rama_socks5::::server::peek::Socks5PeekStream::{constant#0}>, Stream>>>::Error: Into<Box<dyn Error + Sync + Send>>,
impl<Stream, Response, T, F> Service<Stream> for Socks5PeekRouter<T, F>where
Stream: Stream + Unpin,
Response: Send + 'static,
T: Service<PeekStream<StackReader<rama_socks5::::server::peek::Socks5PeekStream::{constant#0}>, Stream>, Response = Response>,
<T as Service<PeekStream<StackReader<rama_socks5::::server::peek::Socks5PeekStream::{constant#0}>, Stream>>>::Error: Into<Box<dyn Error + Sync + Send>>,
F: Service<PeekStream<StackReader<rama_socks5::::server::peek::Socks5PeekStream::{constant#0}>, Stream>, Response = Response>,
<F as Service<PeekStream<StackReader<rama_socks5::::server::peek::Socks5PeekStream::{constant#0}>, Stream>>>::Error: Into<Box<dyn Error + Sync + Send>>,
§async fn serve(
&self,
ctx: Context,
stream: Stream,
) -> Result<<Socks5PeekRouter<T, F> as Service<Stream>>::Response, <Socks5PeekRouter<T, F> as Service<Stream>>::Error>
async fn serve( &self, ctx: Context, stream: Stream, ) -> Result<<Socks5PeekRouter<T, F> as Service<Stream>>::Response, <Socks5PeekRouter<T, F> as Service<Stream>>::Error>
Serve a response or error for the given request,
using the given context.
§fn boxed(self) -> BoxService<Request, Self::Response, Self::Error>
fn boxed(self) -> BoxService<Request, Self::Response, Self::Error>
Box this service to allow for dynamic dispatch.
Auto Trait Implementations§
impl<T, F> Freeze for Socks5PeekRouter<T, F>
impl<T, F> RefUnwindSafe for Socks5PeekRouter<T, F>where
T: RefUnwindSafe,
F: RefUnwindSafe,
impl<T, F> Send for Socks5PeekRouter<T, F>
impl<T, F> Sync for Socks5PeekRouter<T, F>
impl<T, F> Unpin for Socks5PeekRouter<T, F>
impl<T, F> UnwindSafe for Socks5PeekRouter<T, F>where
T: UnwindSafe,
F: UnwindSafe,
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<S, Request, Connection> ConnectorService<Request> for S
impl<S, Request, Connection> ConnectorService<Request> for S
§type Connection = Connection
type Connection = Connection
Connection returned by the
ConnectorService
§fn connect(
&self,
ctx: Context,
req: Request,
) -> impl Future<Output = Result<EstablishedClientConnection<<S as ConnectorService<Request>>::Connection, Request>, <S as ConnectorService<Request>>::Error>> + Send
fn connect( &self, ctx: Context, req: Request, ) -> impl Future<Output = Result<EstablishedClientConnection<<S as ConnectorService<Request>>::Connection, Request>, <S as ConnectorService<Request>>::Error>> + Send
Establish a connection, which often involves some kind of handshake,
or connection revival.
§impl<T> FutureExt for T
impl<T> FutureExt for T
§fn with_context(self, otel_cx: Context) -> WithContext<Self> ⓘ
fn with_context(self, otel_cx: Context) -> WithContext<Self> ⓘ
§fn with_current_context(self) -> WithContext<Self> ⓘ
fn with_current_context(self) -> WithContext<Self> ⓘ
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
§fn and<P, B, E>(self, other: P) -> And<T, P>
fn and<P, B, E>(self, other: P) -> And<T, P>
Create a new
Policy
that returns Action::Follow
only if self
and other
return
Action::Follow
. Read more§impl<T, U> RamaTryInto<U> for Twhere
U: RamaTryFrom<T>,
impl<T, U> RamaTryInto<U> for Twhere
U: RamaTryFrom<T>,
type Error = <U as RamaTryFrom<T>>::Error
fn rama_try_into(self) -> Result<U, <U as RamaTryFrom<T>>::Error>
§impl<T, U> RamaTryInto<U> for Twhere
U: RamaTryFrom<T>,
impl<T, U> RamaTryInto<U> for Twhere
U: RamaTryFrom<T>,
type Error = <U as RamaTryFrom<T>>::Error
fn rama_try_into(self) -> Result<U, <U as RamaTryFrom<T>>::Error>
§impl<S, RequestIn, RequestOut> RequestInspector<RequestIn> for S
impl<S, RequestIn, RequestOut> RequestInspector<RequestIn> for S
type RequestOut = RequestOut
§fn inspect_request(
&self,
ctx: Context,
req: RequestIn,
) -> impl Future<Output = Result<(Context, <S as RequestInspector<RequestIn>>::RequestOut), <S as RequestInspector<RequestIn>>::Error>> + Send
fn inspect_request( &self, ctx: Context, req: RequestIn, ) -> impl Future<Output = Result<(Context, <S as RequestInspector<RequestIn>>::RequestOut), <S as RequestInspector<RequestIn>>::Error>> + Send
Inspect the request, modify it if needed or desired, and return it.