aboutsummaryrefslogtreecommitdiffstats
path: root/uapi_bsd.go
diff options
context:
space:
mode:
Diffstat (limited to 'uapi_bsd.go')
-rw-r--r--uapi_bsd.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/uapi_bsd.go b/uapi_bsd.go
index bb16d2c..80435dd 100644
--- a/uapi_bsd.go
+++ b/uapi_bsd.go
@@ -18,12 +18,13 @@ import (
"unsafe"
)
+var socketDirectory = "/var/run/wireguard"
+
const (
ipcErrorIO = -int64(unix.EIO)
ipcErrorProtocol = -int64(unix.EPROTO)
ipcErrorInvalid = -int64(unix.EINVAL)
ipcErrorPortInUse = -int64(unix.EADDRINUSE)
- socketDirectory = "/var/run/wireguard"
socketName = "%s.sock"
)