mirror of
https://github.com/psviderski/uncloud.git
synced 2026-08-26 19:13:34 +00:00
11 lines
248 B
Go
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")
|
|
}
|