Files
gluetun/internal/netlink/conntrack_unspecified.go
Quentin McGaw 625a63e7c2 fix(firewall): flush conntrack table after enabling firewall at container start
- prevent leaks for connections made the first ~10 milliseconds when Gluetun starts
- seems critical,  but in practice this very rarely happen and it very hard to reproduce
2026-02-22 13:31:38 +00:00

8 lines
107 B
Go

//go:build !linux
package netlink
func (n *NetLink) FlushConntrack() error {
panic("not implemented")
}