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