[][src]Struct socks5_async::SocksStream

pub struct SocksStream { /* fields omitted */ }

A SOCKS5 Stream

Implementations

impl SocksStream[src]

pub async fn connect(
    proxy_addr: SocketAddr,
    target_addr: impl ToTargetAddr,
    user_pass: Option<(String, String)>
) -> Result<TcpStream, Box<dyn Error>>
[src]

Connects to proxy_addr and returns a TcpStream which is authenticated via provided methods and ready to transfer data.

Example

use socks5_async::SocksStream;

// SOCKS5 proxy server address
let proxy: SocketAddr = "127.0.0.1:1080".parse().unwrap();

// Target address
let target: SocketAddrV4 = "127.0.0.1:3033".parse().unwrap();

// Connect to server
let stream = SocksStream::connect(
    proxy,
    target,
    // Pass None if you want to use NoAuth method
    Some(("user1".to_string(), "123456".to_string())),
).await?;

// Use tcp stream ...

Note

This methods uses connect_with_stream() under the hood.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.