mirror of
https://github.com/cwinfo/yggdrasil-go.git
synced 2024-12-23 13:25:39 +00:00
28 lines
693 B
Go
28 lines
693 B
Go
//go:build darwin
|
|
// +build darwin
|
|
|
|
package config
|
|
|
|
// Sane defaults for the macOS/Darwin platform. The "default" options may be
|
|
// may be replaced by the running configuration.
|
|
func getDefaults() platformDefaultParameters {
|
|
return platformDefaultParameters{
|
|
// Admin
|
|
DefaultAdminListen: "unix:///var/run/yggdrasil.sock",
|
|
|
|
// Configuration (used for yggdrasilctl)
|
|
DefaultConfigFile: "/etc/yggdrasil.conf",
|
|
|
|
// Multicast interfaces
|
|
DefaultMulticastInterfaces: []MulticastInterfaceConfig{
|
|
{Regex: "en.*", Beacon: true, Listen: true},
|
|
{Regex: "bridge.*", Beacon: true, Listen: true},
|
|
},
|
|
|
|
// TUN
|
|
MaximumIfMTU: 65535,
|
|
DefaultIfMTU: 65535,
|
|
DefaultIfName: "auto",
|
|
}
|
|
}
|