mirror of
https://github.com/qdm12/gluetun.git
synced 2026-05-07 20:40:13 +02:00
12 lines
199 B
Go
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")
|
|
}
|