github.com/cilium/cilium@v1.16.2/pkg/maps/callsmap/callsmap.go (about)

     1  // SPDX-License-Identifier: Apache-2.0
     2  // Copyright Authors of Cilium
     3  
     4  package callsmap
     5  
     6  const (
     7  	// MapName is the prefix of the BPF map.
     8  	MapName = "cilium_calls_"
     9  	// CustomCallsMapName is the name prefix for the per-endpoint prog
    10  	// array maps used for loading user-defined eBPF programs.
    11  	CustomCallsMapName = MapName + "custom_"
    12  )
    13  
    14  var (
    15  	// HostMapName and NetdevMapName are name prefixes for the host
    16  	// datapath BPF maps. They must be different but have the same length.
    17  	HostMapName   = MapName + "hostns_"
    18  	NetdevMapName = MapName + "netdev_"
    19  )