yeah i should have done this before, i know

This commit is contained in:
evilsocket 2017-11-17 14:49:59 +01:00
commit 0091ffdbb3
33 changed files with 25678 additions and 0 deletions

10
firewall/firewall.go Normal file
View file

@ -0,0 +1,10 @@
package firewall
type FirewallManager interface {
IsForwardingEnabled() bool
EnableForwarding(enabled bool) error
EnableIcmpBcast(enabled bool) error
EnableSendRedirects(enabled bool) error
EnableRedirection(r *Redirection, enabled bool) error
Restore()
}