Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/losfair/unproxy

Map TCP services behind an HTTP(S) proxy to local ports.
https://github.com/losfair/unproxy

Last synced: about 2 months ago
JSON representation

Map TCP services behind an HTTP(S) proxy to local ports.

Awesome Lists containing this project

README

        

# unproxy

Map TCP services behind an HTTP(S) proxy to local ports.

## Usage (CLI)

```
cargo install unproxy-cli
unproxy-cli --proxy https://proxy.example.com --local 127.0.0.1:5432 --remote 127.0.0.1:5432
```

## Usage (library)

[Docs](https://docs.rs/unproxy)

```rust
let proxy_stream = unproxy::connect(proxy_url, remote_hostname, remote_port).await?;
```