mirror of
https://github.com/openfaas/faasd.git
synced 2025-06-13 18:36:46 +00:00
Upgrades containerd, and switches to the official 64-bit ARM binary. Continues to use my binary for 32-bit arm hosts. CNI upgraded to v0.9.1 Signed-off-by: Alex Ellis (OpenFaaS Ltd) <alexellis2@gmail.com>
32 lines
523 B
Go
Generated
32 lines
523 B
Go
Generated
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
|
|
}
|