github.com/cilium/cilium@v1.16.2/pkg/defaults/defaults_unspecified.go (about)

     1  // SPDX-License-Identifier: Apache-2.0
     2  // Copyright Authors of Cilium
     3  
     4  //go:build !linux
     5  
     6  package defaults
     7  
     8  const (
     9  	// AddressScopeMax controls the maximum address scope for addresses to be
    10  	// considered local ones with HOST_ID in the ipcache
    11  	// Use the raw value instead of constant as netlink.SCOPE_LINK is using unix.RT_SCOPE_LINK
    12  	AddressScopeMax = 0xfd - 1 // netlink.SCOPE_LINK - 1
    13  )