Files
x/internal/util/tap/config.go
T

18 lines
257 B
Go

package tap
import "net"
// Route is an IP routing entry
type Route struct {
Net net.IPNet
Gateway net.IP
}
type Config struct {
Name string
Net string
MTU int
Gateway string
ComponentID string
Routes []Route
}