summaryrefslogtreecommitdiff
path: root/helper/linux.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/linux.go
parent18f313693543132e8c1e627a3da9facd6f984c40 (diff)
[feat] add /firewall/isup
- Related: bitmask-systray#97
Diffstat (limited to 'helper/linux.go')
-rw-r--r--helper/linux.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/helper/linux.go b/helper/linux.go
index 4273578..1216e9e 100644
--- a/helper/linux.go
+++ b/helper/linux.go
@@ -60,3 +60,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
+}