getting there...

This commit is contained in:
Adam Ierymenko 2019-09-21 18:22:25 -07:00
commit 2eef9d22e6
No known key found for this signature in database
GPG key ID: C8877CF2D7A5D7F3
11 changed files with 278 additions and 45 deletions

View file

@ -23,6 +23,9 @@ type Route struct {
// Via is how to reach this target (null/empty if the target IP range is local to this virtual LAN)
Via net.IP
// Route flags (currently unused, always 0)
Flags uint16
// Metric is an interface metric that can affect route priority (behavior can be OS-specific)
Metric int
Metric uint16
}