mirror of
https://github.com/yggdrasil-network/yggdrasil-go
synced 2024-11-10 07:20:39 +03:00
22 lines
549 B
Go
22 lines
549 B
Go
package defaults
|
|
|
|
// Defines which parameters are expected by default for configuration on a
|
|
// specific platform. These values are populated in the relevant defaults_*.go
|
|
// for the platform being targeted. They must be set.
|
|
type platformDefaultParameters struct {
|
|
// Admin socket
|
|
DefaultAdminListen string
|
|
|
|
// Configuration (used for yggdrasilctl)
|
|
DefaultConfigFile string
|
|
|
|
// Multicast interfaces
|
|
DefaultMulticastInterfaces []string
|
|
|
|
// TUN/TAP
|
|
MaximumIfMTU int
|
|
DefaultIfMTU int
|
|
DefaultIfName string
|
|
DefaultIfTAPMode bool
|
|
}
|