Files
cunicu/pkg/config/defaults_other.go
Steffen Vogel 946518d651 rtsync: support configuration of routing table
Signed-off-by: Steffen Vogel <post@steffenvogel.de>
2022-09-06 03:34:08 +02:00

10 lines
168 B
Go

//go:build !linux
package config
const (
// FreeBSD FIBs start at 0
// See: https://www.freebsd.org/cgi/man.cgi?query=setfib&sektion=2&n=1
DefaultRouteTable = 0
)