Revision 470b3207efe07c66126db88e682aced94df450f5 authored by Nicolas Busseneau on 26 April 2023, 17:13:46 UTC, committed by Nicolas Busseneau on 26 April 2023, 17:13:46 UTC
Signed-off-by: Nicolas Busseneau <nicolas@isovalent.com>
1 parent b016532
Raw File
defaults_unspecified.go
// SPDX-License-Identifier: Apache-2.0
// Copyright Authors of Cilium

//go:build !linux

package defaults

const (
	// AddressScopeMax controls the maximum address scope for addresses to be
	// considered local ones with HOST_ID in the ipcache
	// Use the raw value instead of constant as netlink.SCOPE_LINK is using unix.RT_SCOPE_LINK
	AddressScopeMax = 0xfd - 1 // netlink.SCOPE_LINK - 1
)
back to top