aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/service/errors.go
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--service/errors.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/service/errors.go b/service/errors.go
index e456818b..ecc0283a 100644
--- a/service/errors.go
+++ b/service/errors.go
@@ -21,6 +21,7 @@ const (
ErrorDetermineWintunName
ErrorUAPIListen
ErrorDNSLookup
+ ErrorFirewall
ErrorDeviceSetConfig
ErrorBindSocketsToDefaultRoutes
ErrorSetNetConfig
@@ -51,6 +52,8 @@ func (e Error) Error() string {
return "Unable to listen on named pipe"
case ErrorDNSLookup:
return "Unable to resolve one or more DNS hostname endpoints"
+ case ErrorFirewall:
+ return "Unable to enable firewall rules"
case ErrorDeviceSetConfig:
return "Unable to set device configuration"
case ErrorBindSocketsToDefaultRoutes: