Files
gluetun/internal/netlink/conntrack_unspecified.go
T

12 lines
199 B
Go

//go:build !linux
package netlink
import "errors"
var ErrConntrackNetlinkNotSupported = errors.New("error not implemented")
func (n *NetLink) FlushConntrack() error {
panic("not implemented")
}