Files
uncloud/internal/machine/network/mtu_darwin.go
T

11 lines
248 B
Go

//go:build darwin
package network
import "errors"
// detectEgressMTU is a stub for Darwin. The machine daemon that performs detection only runs on Linux.
func detectEgressMTU() (int, error) {
return 0, errors.New("not implemented on darwin")
}