mirror of
https://github.com/yggdrasil-network/yggdrasil-go.git
synced 2025-04-29 06:35:07 +03:00
12 lines
327 B
Go
12 lines
327 B
Go
package yggdrasil
|
|
|
|
// Sane defaults for the NetBSD platform. The "default" options may be
|
|
// may be replaced by the running configuration.
|
|
func getDefaults() tunDefaultParameters {
|
|
return tunDefaultParameters{
|
|
maximumIfMTU: 9000,
|
|
defaultIfMTU: 9000,
|
|
defaultIfName: "/dev/tap0",
|
|
defaultIfTAPMode: true,
|
|
}
|
|
}
|