Skip to content

Commit db0be8e

Browse files
committed
vopono v0.6.2 - Hotfix for TCP proxy for non-local connections
1 parent 8d6baf0 commit db0be8e

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "vopono"
33
description = "Launch applications via VPN tunnels using temporary network namespaces"
4-
version = "0.6.1"
4+
version = "0.6.2"
55
authors = ["James McMurray <[email protected]>"]
66
edition = "2018"
77
license = "GPL-3.0-or-later"
@@ -14,7 +14,7 @@ keywords = ["vopono", "vpn", "wireguard", "openvpn", "netns"]
1414
[dependencies]
1515
structopt = "0.3"
1616
anyhow = "1"
17-
directories-next = "1"
17+
directories-next = "2"
1818
log = "0.4"
1919
pretty_env_logger = "0.4"
2020
clap = "2"
@@ -36,12 +36,12 @@ reqwest = {default-features = false, version = "0.10", features = ["blocking", "
3636
sysinfo = "0.15"
3737
base64 = "0.13"
3838
x25519-dalek = "1"
39-
strum = "0.19"
40-
strum_macros = "0.19"
39+
strum = "0.20"
40+
strum_macros = "0.20"
4141
zip = "0.5"
4242
maplit = "1"
4343
webbrowser = "0.5"
44-
basic_tcp_proxy = "0.1"
44+
basic_tcp_proxy = "0.2"
4545
ctrlc = "3"
4646

4747
[package.metadata.rpm]

src/exec.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -256,6 +256,7 @@ pub fn exec(command: ExecCommand) -> anyhow::Result<()> {
256256
proxy.push(basic_tcp_proxy::TcpProxy::new(
257257
p,
258258
std::net::SocketAddr::new(ns.veth_pair_ips.as_ref().unwrap().namespace_ip, p),
259+
false,
259260
));
260261
}
261262
}

0 commit comments

Comments
 (0)