2021-04-09 18:48:10 +00:00
|
|
|
// +build !linux
|
|
|
|
|
|
|
|
package iptables
|
|
|
|
|
|
|
|
import "errors"
|
|
|
|
|
|
|
|
// iptablesExecutor implements IptablesProvider and errors out on any non-linux OS.
|
2021-07-13 16:05:48 +00:00
|
|
|
type iptablesExecutor struct {
|
|
|
|
cfg Config
|
|
|
|
}
|
2021-04-09 18:48:10 +00:00
|
|
|
|
|
|
|
func (i *iptablesExecutor) AddRule(_ string, _ ...string) {}
|
|
|
|
|
|
|
|
func (i *iptablesExecutor) ApplyRules() error {
|
|
|
|
return errors.New("applying traffic redirection rules with 'iptables' is not supported on this operating system; only linux OS is supported")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (i *iptablesExecutor) Rules() []string {
|
|
|
|
return nil
|
|
|
|
}
|