Skip to content

Commit

Permalink
vopono v0.6.2 - Hotfix for TCP proxy for non-local connections
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesmcm committed Dec 4, 2020
1 parent 8d6baf0 commit db0be8e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "vopono"
description = "Launch applications via VPN tunnels using temporary network namespaces"
version = "0.6.1"
version = "0.6.2"
authors = ["James McMurray <[email protected]>"]
edition = "2018"
license = "GPL-3.0-or-later"
Expand All @@ -14,7 +14,7 @@ keywords = ["vopono", "vpn", "wireguard", "openvpn", "netns"]
[dependencies]
structopt = "0.3"
anyhow = "1"
directories-next = "1"
directories-next = "2"
log = "0.4"
pretty_env_logger = "0.4"
clap = "2"
Expand All @@ -36,12 +36,12 @@ reqwest = {default-features = false, version = "0.10", features = ["blocking", "
sysinfo = "0.15"
base64 = "0.13"
x25519-dalek = "1"
strum = "0.19"
strum_macros = "0.19"
strum = "0.20"
strum_macros = "0.20"
zip = "0.5"
maplit = "1"
webbrowser = "0.5"
basic_tcp_proxy = "0.1"
basic_tcp_proxy = "0.2"
ctrlc = "3"

[package.metadata.rpm]
Expand Down
1 change: 1 addition & 0 deletions src/exec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,7 @@ pub fn exec(command: ExecCommand) -> anyhow::Result<()> {
proxy.push(basic_tcp_proxy::TcpProxy::new(
p,
std::net::SocketAddr::new(ns.veth_pair_ips.as_ref().unwrap().namespace_ip, p),
false,
));
}
}
Expand Down

0 comments on commit db0be8e

Please sign in to comment.