- Netlink linux tagged files - Netlink linux || darwin tagged files - Create non-implemented files for NOT linux - Create non-implemented files for NOT linux and NOT darwin - Specify wireguard netlink integration test as for linux only
20 lines
319 B
Go
20 lines
319 B
Go
//go:build !linux
|
|
|
|
package netlink
|
|
|
|
func NewRule() Rule {
|
|
return Rule{}
|
|
}
|
|
|
|
func (n *NetLink) RuleList(family int) (rules []Rule, err error) {
|
|
panic("not implemented")
|
|
}
|
|
|
|
func (n *NetLink) RuleAdd(rule Rule) error {
|
|
panic("not implemented")
|
|
}
|
|
|
|
func (n *NetLink) RuleDel(rule Rule) error {
|
|
panic("not implemented")
|
|
}
|