blob: c8c8cc9ed2b9c48e8f3bad524597c48ae2642bbe [file] [log] [blame]
//go:build !linux
package libnetwork
import "github.com/docker/docker/api/types/system"
// FirewallBackend returns the name of the firewall backend for "docker info".
func (c *Controller) FirewallBackend() *system.FirewallInfo {
return nil
}
// enabledIptablesVersions is a no-op on non-Linux systems.
func (c *Controller) enabledIptablesVersions() []any {
return nil
}
func (c *Controller) setupOSLSandbox(_ *Sandbox) error {
return nil
}