async-http-proxy
is a lightweight asynchronous HTTP proxy client library, which can be used to
connect a to a TCP port via HTTP Connect proxy. It can use Tokio and
async-std as asynchronous runtime.
The following example shows how to connect to github.com
via Connect proxy (tokio
):
```rust
use asynchttpproxy::httpconnecttokio;
use std::error::Error;
use tokio::net::TcpStream;
use url::Url;
// Features "runtime-tokio" and "basic-auth" have to be activated
async fn main() -> Result<(), Box
http_connect_tokio(&mut stream, &url).await?;
// stream is now connect to github.com
Ok(())
} ```
The following example shows how to connect to example.org
with Basic Authentication via Connect
proxy (async-std
):
```rust
use asynchttpproxy::httpconnectasyncstd;
use asyncstd::net::TcpStream;
use asyncstd::task;
use std::error::Error;
use url::Url;
// Features "async-std-tokio" and "basic-auth" have to be activated
fn main() -> Result<(), Box
http_connect_async_std(&mut stream, &url).await?;
// stream is now connect to github.com
Ok(())
})
} ```
CONNECT
This project is licensed under the BSD-3-Clause license.
Any contribution intentionally submitted for inclusion in async_http_proxy
by you, shall be
licensed as BSD-3-Clause, without any additional
terms or conditions.