mirror of
https://codeberg.org/cunicu/cunicu.git
synced 2025-12-24 06:18:40 +08:00
13 lines
282 B
Go
13 lines
282 B
Go
// SPDX-FileCopyrightText: 2023-2025 Steffen Vogel <post@steffenvogel.de>
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
//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
|
|
)
|