Documentation ¶
Index ¶
- Constants
- Variables
- type Admin
- type AdminFactory
- type Auth
- type AuthFactory
- type Cluster
- func (c *Cluster) Close() error
- func (c *Cluster) GetConfig() v1alpha1.Config
- func (c *Cluster) Inspect(old, new, full v1alpha1.Config) (bool, error)
- func (c *Cluster) ObjectName() string
- func (c *Cluster) ObjectType() string
- func (c *Cluster) Reconcile(conf v1alpha1.Config) error
- func (c *Cluster) Route(peer net.IP) bool
- type ClusterFactory
- type Factory
- func NewAdminFactory(dryRun bool, rc health.Check, logger logging.LoggerFactory) Factory
- func NewAuthFactory(logger logging.LoggerFactory) Factory
- func NewClusterFactory(resolver resolver.DnsResolver, logger logging.LoggerFactory) Factory
- func NewListenerFactory(net transport.Net, realmHandler RealmHandler, logger logging.LoggerFactory) Factory
- type Listener
- func (l *Listener) Close() error
- func (l *Listener) GetConfig() v1alpha1.Config
- func (l *Listener) Inspect(old, new, full v1alpha1.Config) (bool, error)
- func (l *Listener) ObjectName() string
- func (l *Listener) ObjectType() string
- func (l *Listener) Reconcile(conf v1alpha1.Config) error
- func (l *Listener) String() string
- type ListenerFactory
- type Object
- func NewAdmin(conf v1alpha1.Config, dryRun bool, rc health.Check, ...) (Object, error)
- func NewAuth(conf v1alpha1.Config, logger logging.LoggerFactory) (Object, error)
- func NewCluster(conf v1alpha1.Config, resolver resolver.DnsResolver, ...) (Object, error)
- func NewListener(conf v1alpha1.Config, net transport.Net, realmHandler RealmHandler, ...) (Object, error)
- type ReadinessHandler
- type RealmHandler
Constants ¶
const DefaultAdminObjectName = "DefaultAdmin"
Variables ¶
var ( // ErrRestartRequired indicates that an object needs to be restarted for reconciliation. ErrRestartRequired = errors.New("restart required") )
Functions ¶
This section is empty.
Types ¶
type Admin ¶
type Admin struct {
Name, LogLevel string
DryRun bool
MetricsEndpoint, HealthCheckEndpoint string
// contains filtered or unexported fields
}
Admin is the main object holding STUNner administration info.
func (*Admin) Inspect ¶ added in v0.10.5
Inspect examines whether a configuration change requires a reconciliation (returns true if it does) or restart (returns ErrRestartRequired).
func (*Admin) ObjectName ¶
ObjectName returns the name of the object.
func (*Admin) ObjectType ¶ added in v0.11.3
ObjectType returns the type of the object.
type AdminFactory ¶ added in v0.10.5
type AdminFactory struct {
// contains filtered or unexported fields
}
AdminFactory can create now Admin objects
type Auth ¶
type Auth struct { Type v1alpha1.AuthType Realm, Username, Password, Secret string Log logging.LeveledLogger }
Auth is the STUNner authenticator
func (*Auth) Inspect ¶ added in v0.10.5
Inspect examines whether a configuration change requires a reconciliation (returns true if it does) or restart (returns ErrRestartRequired).
func (*Auth) ObjectName ¶
ObjectName returns the name of the object
func (*Auth) ObjectType ¶ added in v0.11.3
ObjectType returns the type of the object
type AuthFactory ¶ added in v0.10.5
type AuthFactory struct {
// contains filtered or unexported fields
}
AuthFactory can create now Auth objects
type Cluster ¶
type Cluster struct { Name string Type v1alpha1.ClusterType Protocol v1alpha1.ClusterProtocol Endpoints []net.IPNet Domains []string Resolver resolver.DnsResolver // for strict DNS // contains filtered or unexported fields }
Listener implements a STUNner cluster
func (*Cluster) Inspect ¶ added in v0.10.5
Inspect examines whether a configuration change requires a reconciliation (returns true if it does) or restart (returns ErrRestartRequired).
func (*Cluster) ObjectName ¶
ObjectName returns the name of the object.
func (*Cluster) ObjectType ¶ added in v0.11.3
ObjectType returns the type of the object.
type ClusterFactory ¶ added in v0.10.5
type ClusterFactory struct {
// contains filtered or unexported fields
}
ClusterFactory can create now Cluster objects
type Factory ¶ added in v0.10.5
type Factory interface { // New will spawn a new object from the factory New(conf v1alpha1.Config) (Object, error) }
Factory can create new objects
func NewAdminFactory ¶ added in v0.10.5
NewAdminFactory creates a new factory for Admin objects
func NewAuthFactory ¶ added in v0.10.5
func NewAuthFactory(logger logging.LoggerFactory) Factory
NewAuthFactory creates a new factory for Auth objects
func NewClusterFactory ¶ added in v0.10.5
func NewClusterFactory(resolver resolver.DnsResolver, logger logging.LoggerFactory) Factory
NewClusterFactory creates a new factory for Cluster objects
func NewListenerFactory ¶ added in v0.10.5
func NewListenerFactory(net transport.Net, realmHandler RealmHandler, logger logging.LoggerFactory) Factory
NewListenerFactory creates a new factory for Listener objects
type Listener ¶
type Listener struct {
Name, Realm string
Proto v1alpha1.ListenerProtocol
Addr net.IP
Port, MinPort, MaxPort int
Cert, Key []byte
Conns []any // either a set of turn.ListenerConfigs or turn.PacketConnConfigs
Server *turn.Server
Routes []string
Net transport.Net
// contains filtered or unexported fields
}
Listener implements a STUNner listener.
func (*Listener) Inspect ¶ added in v0.10.5
Inspect examines whether a configuration change requires a reconciliation (returns true if it does) or restart (returns ErrRestartRequired).
func (*Listener) ObjectName ¶
ObjectName returns the name of the object.
func (*Listener) ObjectType ¶ added in v0.11.3
ObjectType returns the type of the object.
type ListenerFactory ¶ added in v0.10.5
type ListenerFactory struct {
// contains filtered or unexported fields
}
/////////// ListenerFactory can create now Listener objects
type Object ¶
type Object interface { // ObjectName returns the name of the object. ObjectName() string // ObjectType returns the type of the object. ObjectType() string // Inspect examines whether a configuration change requires a reconciliation or restart. Inspect(old, new, full v1alpha1.Config) (bool, error) // Reconcile updates the object for a new configuration. Reconcile(conf v1alpha1.Config) error // GetConfig returns the configuration of the running authenticator. GetConfig() v1alpha1.Config // Close closes the object, may return ErrRestartRequired. Close() error }
Object is the high-level interface for all STUNner objects like listeners, clusters, etc.
func NewAdmin ¶
func NewAdmin(conf v1alpha1.Config, dryRun bool, rc health.Check, logger logging.LoggerFactory) (Object, error)
NewAdmin creates a new Admin object.
func NewCluster ¶
func NewCluster(conf v1alpha1.Config, resolver resolver.DnsResolver, logger logging.LoggerFactory) (Object, error)
NewCluster creates a new cluster.
func NewListener ¶
func NewListener(conf v1alpha1.Config, net transport.Net, realmHandler RealmHandler, logger logging.LoggerFactory) (Object, error)
NewListener creates a new listener. Requires a server restart (returns ErrRestartRequired)
type ReadinessHandler ¶ added in v0.11.3
type ReadinessHandler = func() error
ReadinessHandler is a callback that allows an object to check the readiness of STUNner.
type RealmHandler ¶ added in v0.11.3
type RealmHandler = func() string
RealmHandler is a callback that allows an object to find out the authentication realm.