mirror of
https://github.com/containers/podman.git
synced 2025-09-23 13:13:42 +08:00

Update CNI so we can match wrapped errors. This should silence ENOENT warnings when trying to read the cni conflist files. Fixes #10926 Because CNI v1.0.0 contains breaking changes we have to change some import paths. Also we cannot update the CNI version used for the conflist files created by `podman network create` because this would require at least containernetwork-plugins v1.0.1 and a updated dnsname plugin. Because this will take a while until it lands in most distros we should not use this version. So keep using v0.4.0 for now. The update from checkpoint-restore/checkpointctl is also required to make sure it no longer uses CNI to read the network status. [NO TESTS NEEDED] Signed-off-by: Paul Holzinger <pholzing@redhat.com>
32 lines
523 B
Go
32 lines
523 B
Go
package netlink
|
|
|
|
// INET_DIAG constatns
|
|
const (
|
|
INET_DIAG_NONE = iota
|
|
INET_DIAG_MEMINFO
|
|
INET_DIAG_INFO
|
|
INET_DIAG_VEGASINFO
|
|
INET_DIAG_CONG
|
|
INET_DIAG_TOS
|
|
INET_DIAG_TCLASS
|
|
INET_DIAG_SKMEMINFO
|
|
INET_DIAG_SHUTDOWN
|
|
INET_DIAG_DCTCPINFO
|
|
INET_DIAG_PROTOCOL
|
|
INET_DIAG_SKV6ONLY
|
|
INET_DIAG_LOCALS
|
|
INET_DIAG_PEERS
|
|
INET_DIAG_PAD
|
|
INET_DIAG_MARK
|
|
INET_DIAG_BBRINFO
|
|
INET_DIAG_CLASS_ID
|
|
INET_DIAG_MD5SIG
|
|
INET_DIAG_MAX
|
|
)
|
|
|
|
type InetDiagTCPInfoResp struct {
|
|
InetDiagMsg *Socket
|
|
TCPInfo *TCPInfo
|
|
TCPBBRInfo *TCPBBRInfo
|
|
}
|