mirror of
https://github.com/qdm12/gluetun.git
synced 2026-05-07 04:20:12 +02:00
chore(constants): add internal/constants/openvpn package
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
package openvpn
|
||||
|
||||
const (
|
||||
SHA1 = "sha1"
|
||||
SHA256 = "sha256"
|
||||
SHA512 = "sha512"
|
||||
)
|
||||
@@ -0,0 +1,8 @@
|
||||
package openvpn
|
||||
|
||||
const (
|
||||
AES128cbc = "aes-128-cbc"
|
||||
AES256cbc = "aes-256-cbc"
|
||||
AES128gcm = "aes-128-gcm"
|
||||
AES256gcm = "aes-256-gcm"
|
||||
)
|
||||
@@ -0,0 +1,6 @@
|
||||
package openvpn
|
||||
|
||||
const (
|
||||
// AuthConf is the file path to the OpenVPN auth file.
|
||||
AuthConf = "/etc/openvpn/auth.conf"
|
||||
)
|
||||
@@ -0,0 +1,6 @@
|
||||
package openvpn
|
||||
|
||||
const (
|
||||
Openvpn24 = "2.4"
|
||||
Openvpn25 = "2.5"
|
||||
)
|
||||
Reference in New Issue
Block a user