2023-01-27 21:37:20 +00:00
|
|
|
// Copyright (c) Tailscale Inc & AUTHORS
|
|
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
2022-10-14 08:29:34 +00:00
|
|
|
|
|
|
|
// This might work on other BSDs, but only tested on FreeBSD.
|
|
|
|
|
|
|
|
//go:build freebsd
|
|
|
|
|
2024-04-28 04:18:18 +00:00
|
|
|
package netmon
|
2022-10-14 08:29:34 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"syscall"
|
|
|
|
|
|
|
|
"golang.org/x/net/route"
|
|
|
|
"golang.org/x/sys/unix"
|
|
|
|
)
|
|
|
|
|
|
|
|
// fetchRoutingTable calls route.FetchRIB, fetching NET_RT_DUMP.
|
|
|
|
func fetchRoutingTable() (rib []byte, err error) {
|
|
|
|
return route.FetchRIB(syscall.AF_UNSPEC, unix.NET_RT_DUMP, 0)
|
|
|
|
}
|
|
|
|
|
|
|
|
func parseRoutingTable(rib []byte) ([]route.Message, error) {
|
|
|
|
return route.ParseRIB(syscall.NET_RT_IFLIST, rib)
|
|
|
|
}
|
2023-02-10 23:02:12 +00:00
|
|
|
|
|
|
|
func getDelegatedInterface(ifIndex int) (int, error) {
|
|
|
|
return 0, nil
|
|
|
|
}
|