mirror of
https://github.com/openfaas/faasd.git
synced 2025-06-21 00:06:37 +00:00
* Updates containerd to v1.7.0 and new binary for 32-bit Arm OSes. * Updates Go dependencies - openfaas and external Signed-off-by: Alex Ellis (OpenFaaS Ltd) <alexellis2@gmail.com>
30 lines
354 B
Go
Generated
30 lines
354 B
Go
Generated
package nl
|
|
|
|
const (
|
|
LWT_BPF_PROG_UNSPEC = iota
|
|
LWT_BPF_PROG_FD
|
|
LWT_BPF_PROG_NAME
|
|
__LWT_BPF_PROG_MAX
|
|
)
|
|
|
|
const (
|
|
LWT_BPF_PROG_MAX = __LWT_BPF_PROG_MAX - 1
|
|
)
|
|
|
|
const (
|
|
LWT_BPF_UNSPEC = iota
|
|
LWT_BPF_IN
|
|
LWT_BPF_OUT
|
|
LWT_BPF_XMIT
|
|
LWT_BPF_XMIT_HEADROOM
|
|
__LWT_BPF_MAX
|
|
)
|
|
|
|
const (
|
|
LWT_BPF_MAX = __LWT_BPF_MAX - 1
|
|
)
|
|
|
|
const (
|
|
LWT_BPF_MAX_HEADROOM = 256
|
|
)
|