mirror of
https://github.com/containers/podman.git
synced 2026-03-06 07:52:56 -05:00
The dependabot does not update dependencies when they do not use a tag. This patch upgrades all untagged depenencies if possible. You can upgrade all dependencies with `go get -u ./... && make vendor` in theory however this failed since the k8s changes do not compile on go v1.16 so I only updated the other dependencies. Signed-off-by: Paul Holzinger <pholzing@redhat.com>
30 lines
354 B
Go
30 lines
354 B
Go
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
|
|
)
|