summaryrefslogtreecommitdiff
path: root/helper/windows.go
diff options
context:
space:
mode:
authorRuben Pollan <meskio@sindominio.net>2019-01-09 12:35:19 +0100
committerKali Kaneko (leap communications) <kali@leap.se>2019-01-10 00:25:55 +0100
commita9876d6803f281db299ba64f5c7d377303ee8bdb (patch)
treea90e7baf3e3f81641a3dc4c7f3999d7164b1e2b7 /helper/windows.go
parent18f313693543132e8c1e627a3da9facd6f984c40 (diff)
[feat] add /firewall/isup
- Related: bitmask-systray#97
Diffstat (limited to 'helper/windows.go')
-rw-r--r--helper/windows.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/helper/windows.go b/helper/windows.go
index 88c96e9..ba812c1 100644
--- a/helper/windows.go
+++ b/helper/windows.go
@@ -59,3 +59,8 @@ func firewallStop() error {
log.Println("Stop firewall: do nothing, not implemented")
return nil
}
+
+func firewallIsUp() bool {
+ log.Println("IsUp firewall: do nothing, not implemented")
+ return false
+}