-
-
Notifications
You must be signed in to change notification settings - Fork 159
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Dennis Schwerdel
committed
Nov 25, 2016
1 parent
6d9fddd
commit 65dd7dd
Showing
5 changed files
with
42 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "vpncloud" | ||
version = "0.7.0" | ||
version = "0.8.0" | ||
authors = ["Dennis Schwerdel <[email protected]>"] | ||
build = "build.rs" | ||
license = "GPL-3.0" | ||
|
@@ -34,3 +34,6 @@ pkg-config = "0.3" | |
[features] | ||
default = [] | ||
bench = [] | ||
|
||
[profile.release] | ||
lto = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,27 @@ | ||
vpncloud (0.8.0) stable; urgency=medium | ||
|
||
* [added] Support for automatic port forwarding via UPnP | ||
* [added] Added `-s` shorthand for `--subnet` | ||
* [added] Support for YAML config file via `--config` | ||
* [added] Support for running in the background | ||
* [added] Support for dropping permissions | ||
* [added] Support for writing a pid file | ||
* [added] Support for writing logs to logfile | ||
* [changed] Not overriding recently learnt addresses in switch mode | ||
* [changed] Caching resolved addresses to increase performance | ||
* [changed] Configurable magic header is now used instead of Network-ID (**incompatible**) | ||
* [changed] Clarified documentation on TUN netmasks | ||
* [changed] Added timestamps to output | ||
* [changed] Using new YAML config instead of old config files (**incompatible**) | ||
* [changed] Prefer IPv4 over IPv6 when possible | ||
* [fixed] Fixed documentation of listen parameter | ||
* [fixed] Fixed problem with multiple subnets | ||
* [fixed] Fixed problem with interrupted poll after suspend to ram | ||
* [fixed] Forgot to extend peer timeout on peer exchange | ||
* [fixed] No longer broadcasting to additional addresses | ||
|
||
-- Dennis Schwerdel <[email protected]> Fri, 25 Nov 2016 07:30:17 +0100 | ||
|
||
vpncloud (0.7.0) stable; urgency=medium | ||
|
||
* [added] Added more tests | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
[Unit] | ||
Description=VpnCloud network '%I' | ||
Before=systemd-user-sessions.service | ||
|
||
[Service] | ||
Type=forking | ||
ExecStart=/usr/bin/vpncloud --config /etc/vpncloud/%i.net --daemon --log-file /var/log/vpncloud-%i.log --pid-file /run/vpncloud-%i.run | ||
WorkingDirectory=/etc/vpncloud | ||
PIDFile=/run/vpncloud-%i.run | ||
|
||
[Install] | ||
WantedBy=multi-user.target |