Clean up error handling of listen port

This commit is contained in:
Jason A. Donenfeld
2017-09-26 15:15:27 +02:00
parent 012e7b9d33
commit 6fa65bded4
4 changed files with 6 additions and 6 deletions

View File

@@ -11,9 +11,9 @@ import (
const (
ipcErrorIO = -int64(unix.EIO)
ipcErrorNotDefined = -int64(unix.ENODEV)
ipcErrorProtocol = -int64(unix.EPROTO)
ipcErrorInvalid = -int64(unix.EINVAL)
ipcErrorPortInUse = -int64(unix.EADDRINUSE)
socketDirectory = "/var/run/wireguard"
socketName = "%s.sock"
)