route.go 244 B

1234567891011121314151617
  1. package routing
  2. type RouteType string
  3. const (
  4. IPv4 RouteType = "IPv4"
  5. IPv6 RouteType = "IPv6"
  6. )
  7. type Route struct {
  8. Type RouteType
  9. Default bool
  10. Device string
  11. Destination string
  12. Gateway string
  13. Flags string
  14. }