new: gateway.change event for MITM monitoring

This commit is contained in:
Simone Margaritelli 2021-04-10 22:59:03 +02:00
parent 43a93fd866
commit c47e3f6195
8 changed files with 144 additions and 5 deletions

View file

@ -1,10 +1,10 @@
package routing
type RouteType int
type RouteType string
const (
IPv4 RouteType = 0
IPv6 RouteType = 1
IPv4 RouteType = "IPv4"
IPv6 RouteType = "IPv6"
)
type Route struct {