x/internal/util/tap/config.go
2022-11-04 18:48:28 +08:00

17 lines
217 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
Routes []Route
}