pub struct SocksListener<S> { /* private fields */ }
Expand description

A listener that accepts TCP connections through a proxy.

use async_socks5::SocksListener;
use tokio::{io::BufStream, net::TcpStream};

let stream = TcpStream::connect("my-proxy-server.com:54321").await?;
let mut stream = BufStream::new(stream);
let (stream, addr) = SocksListener::bind(stream, ("ftp-server.org", 21), None)
    .await?
    .accept()
    .await?;

Implementations

Creates SocksListener. Performs the BIND command under the hood.

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.