mirror of
https://github.com/slackhq/nebula.git
synced 2025-11-22 16:34:25 +01:00
17 lines
253 B
Go
17 lines
253 B
Go
package overlay
|
|
|
|
import (
|
|
"net/netip"
|
|
|
|
"github.com/slackhq/nebula/routing"
|
|
)
|
|
|
|
type Device interface {
|
|
TunDev
|
|
Activate() error
|
|
Networks() []netip.Prefix
|
|
Name() string
|
|
RoutesFor(netip.Addr) routing.Gateways
|
|
NewMultiQueueReader() (TunDev, error)
|
|
}
|