yggdrasil-go/src/core/options.go

57 lines
1.3 KiB
Go
Raw Normal View History

2022-07-24 10:23:25 +01:00
package core
import (
"crypto/ed25519"
2023-04-06 21:45:49 +01:00
"fmt"
"net/url"
2022-07-24 10:23:25 +01:00
)
2023-04-06 21:45:49 +01:00
func (c *Core) _applyOption(opt SetupOption) (err error) {
2022-09-03 10:51:44 +01:00
switch v := opt.(type) {
case Peer:
2023-04-06 21:45:49 +01:00
u, err := url.Parse(v.URI)
if err != nil {
return fmt.Errorf("unable to parse peering URI: %w", err)
}
err = c.links.add(u, v.SourceInterface, linkTypePersistent)
switch err {
case ErrLinkAlreadyConfigured:
// Don't return this error, otherwise we'll panic at startup
// if there are multiple of the same peer configured
return nil
default:
return err
}
2022-09-03 10:51:44 +01:00
case ListenAddress:
c.config._listeners[v] = struct{}{}
case NodeInfo:
c.config.nodeinfo = v
case NodeInfoPrivacy:
c.config.nodeinfoPrivacy = v
case AllowedPublicKey:
pk := [32]byte{}
copy(pk[:], v)
c.config._allowedPublicKeys[pk] = struct{}{}
}
2023-04-06 21:45:49 +01:00
return
2022-09-03 10:51:44 +01:00
}
2022-07-24 10:23:25 +01:00
type SetupOption interface {
isSetupOption()
}
type ListenAddress string
type Peer struct {
URI string
SourceInterface string
}
type NodeInfo map[string]interface{}
type NodeInfoPrivacy bool
type AllowedPublicKey ed25519.PublicKey
func (a ListenAddress) isSetupOption() {}
func (a Peer) isSetupOption() {}
func (a NodeInfo) isSetupOption() {}
func (a NodeInfoPrivacy) isSetupOption() {}
func (a AllowedPublicKey) isSetupOption() {}