mirror of
https://github.com/cloudnativelabs/kube-router.git
synced 2025-11-22 13:31:31 +01:00
* go.mod: Vendor coreos/go-iptables 0.4.5 * go.mod: Vendor containernetworking/plugins v0.8.0 * Update implementation to work with libcni 0.8.0 * go.mod: Vendor containernetworking/plugins v0.9.0
19 lines
244 B
Go
19 lines
244 B
Go
package netlink
|
|
|
|
// TCP States
|
|
const (
|
|
TCP_ESTABLISHED = iota + 0x01
|
|
TCP_SYN_SENT
|
|
TCP_SYN_RECV
|
|
TCP_FIN_WAIT1
|
|
TCP_FIN_WAIT2
|
|
TCP_TIME_WAIT
|
|
TCP_CLOSE
|
|
TCP_CLOSE_WAIT
|
|
TCP_LAST_ACK
|
|
TCP_LISTEN
|
|
TCP_CLOSING
|
|
TCP_NEW_SYN_REC
|
|
TCP_MAX_STATES
|
|
)
|