mirror of
https://github.com/psviderski/uncloud.git
synced 2026-08-26 11:03:34 +00:00
17 lines
339 B
Go
17 lines
339 B
Go
package firewall
|
|
|
|
import (
|
|
"fmt"
|
|
"net/netip"
|
|
)
|
|
|
|
// ConfigureIptablesChains is a stub for Darwin.
|
|
func ConfigureIptablesChains(machineIP netip.Addr) error {
|
|
return fmt.Errorf("not supported on Darwin")
|
|
}
|
|
|
|
// CleanupIptablesChains is a stub for Darwin.
|
|
func CleanupIptablesChains() error {
|
|
return fmt.Errorf("not supported on Darwin")
|
|
}
|