IsRunning returns if the firewall is running or not.
()
| 93 | |
| 94 | // IsRunning returns if the firewall is running or not. |
| 95 | func IsRunning() bool { |
| 96 | return fw != nil && fw.IsRunning() |
| 97 | } |
| 98 | |
| 99 | // ErrorsChan returns the channel where the errors are sent to. |
| 100 | func ErrorsChan() <-chan string { |