mirror of
https://codeberg.org/cunicu/cunicu.git
synced 2025-12-24 06:18:40 +08:00
10 lines
168 B
Go
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
|
|
)
|