- Fix: custom config with custom network interface name for firewall - Keep VPN tunnel interface in firewall state - Vul fix: only allow traffic through vpn interface when needed - Adapt code to adapt to network interface name - Remove outdated TUN and TAP constants
17 lines
250 B
Go
17 lines
250 B
Go
package constants
|
|
|
|
const (
|
|
AES128cbc = "aes-128-cbc"
|
|
AES256cbc = "aes-256-cbc"
|
|
AES128gcm = "aes-128-gcm"
|
|
AES256gcm = "aes-256-gcm"
|
|
SHA1 = "sha1"
|
|
SHA256 = "sha256"
|
|
SHA512 = "sha512"
|
|
)
|
|
|
|
const (
|
|
Openvpn24 = "2.4"
|
|
Openvpn25 = "2.5"
|
|
)
|