mirror of
https://github.com/bettercap/bettercap
synced 2025-07-06 13:02:12 -07:00
8 lines
185 B
Go
8 lines
185 B
Go
package firewall
|
|
|
|
type FirewallManager interface {
|
|
IsForwardingEnabled() bool
|
|
EnableForwarding(enabled bool) error
|
|
EnableRedirection(r *Redirection, enabled bool) error
|
|
Restore()
|
|
}
|