Documentation ¶
Index ¶
- Constants
- type FakeIPTables
- func (*FakeIPTables) AddReloadFunc(reloadFunc func())
- func (*FakeIPTables) DeleteChain(table iptables.Table, chain iptables.Chain) error
- func (*FakeIPTables) DeleteRule(table iptables.Table, chain iptables.Chain, args ...string) error
- func (*FakeIPTables) Destroy()
- func (*FakeIPTables) EnsureChain(table iptables.Table, chain iptables.Chain) (bool, error)
- func (*FakeIPTables) EnsureRule(position iptables.RulePosition, table iptables.Table, chain iptables.Chain, ...) (bool, error)
- func (*FakeIPTables) FlushChain(table iptables.Table, chain iptables.Chain) error
- func (f *FakeIPTables) GetRules(chainName string) (rules []Rule)
- func (*FakeIPTables) GetVersion() (string, error)
- func (*FakeIPTables) IsIpv6() bool
- func (*FakeIPTables) Restore(table iptables.Table, data []byte, flush iptables.FlushFlag, ...) error
- func (f *FakeIPTables) RestoreAll(data []byte, flush iptables.FlushFlag, counters iptables.RestoreCountersFlag) error
- func (f *FakeIPTables) Save(table iptables.Table) ([]byte, error)
- func (f *FakeIPTables) SaveInto(table iptables.Table, buffer *bytes.Buffer) error
- type Rule
Constants ¶
View Source
const ( Destination = "-d " Source = "-s " DPort = "--dport " Protocol = "-p " Jump = "-j " Reject = "REJECT" ToDest = "--to-destination " )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type FakeIPTables ¶
type FakeIPTables struct {
Lines []byte
}
no-op implementation of iptables Interface
func NewFake ¶
func NewFake() *FakeIPTables
func (*FakeIPTables) AddReloadFunc ¶
func (*FakeIPTables) AddReloadFunc(reloadFunc func())
func (*FakeIPTables) DeleteChain ¶
func (*FakeIPTables) DeleteRule ¶
func (*FakeIPTables) Destroy ¶
func (*FakeIPTables) Destroy()
func (*FakeIPTables) EnsureChain ¶
func (*FakeIPTables) EnsureRule ¶
func (*FakeIPTables) EnsureRule(position iptables.RulePosition, table iptables.Table, chain iptables.Chain, args ...string) (bool, error)
func (*FakeIPTables) FlushChain ¶
func (*FakeIPTables) GetRules ¶
func (f *FakeIPTables) GetRules(chainName string) (rules []Rule)
GetChain returns a list of rules for the given chain. The chain name must match exactly. The matching is pretty dumb, don't rely on it for anything but testing.
func (*FakeIPTables) GetVersion ¶
func (*FakeIPTables) GetVersion() (string, error)
func (*FakeIPTables) IsIpv6 ¶
func (*FakeIPTables) IsIpv6() bool
func (*FakeIPTables) Restore ¶
func (*FakeIPTables) Restore(table iptables.Table, data []byte, flush iptables.FlushFlag, counters iptables.RestoreCountersFlag) error
func (*FakeIPTables) RestoreAll ¶
func (f *FakeIPTables) RestoreAll(data []byte, flush iptables.FlushFlag, counters iptables.RestoreCountersFlag) error
Click to show internal directories.
Click to hide internal directories.