Crate hyper_socks2

source ·
Expand description

Reborn of SOCKS4/5 connector for Hyper library

Example

use hyper::{client::Client, Body};
use hyper_socks2::{Connector, Proxy};

let proxy = Proxy::Socks5 {
    addrs: "your.socks5.proxy:1080",
    auth: None,
};
let connector = Connector::new(proxy);
let client = Client::builder().build::<_, Body>(connector);

Structs

An authentication information
A future with ready TCP stream
A TCP connector working through proxy

Enums

A SOCKS4/5 proxy information