summaryrefslogtreecommitdiff
path: root/vendor/github.com/vishvananda/netlink/tcp.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-12-10 07:38:02 -0500
committerGitHub <noreply@github.com>2020-12-10 07:38:02 -0500
commitdeb00425c2984ea42158ce6afec74474de998bfd (patch)
treeb883177c4cdf101bc862038b3258dc0b450bc243 /vendor/github.com/vishvananda/netlink/tcp.go
parenteaa19a1c10c8eb2e5d8a0d864c123c2f3484b01a (diff)
parenteb9e77430406f5223241d785b9f6807296534a3d (diff)
downloadpodman-deb00425c2984ea42158ce6afec74474de998bfd.tar.gz
podman-deb00425c2984ea42158ce6afec74474de998bfd.tar.bz2
podman-deb00425c2984ea42158ce6afec74474de998bfd.zip
Merge pull request #8678 from containers/dependabot/go_modules/github.com/containernetworking/plugins-0.9.0
Bump github.com/containernetworking/plugins from 0.8.7 to 0.9.0
Diffstat (limited to 'vendor/github.com/vishvananda/netlink/tcp.go')
-rw-r--r--vendor/github.com/vishvananda/netlink/tcp.go18
1 files changed, 18 insertions, 0 deletions
diff --git a/vendor/github.com/vishvananda/netlink/tcp.go b/vendor/github.com/vishvananda/netlink/tcp.go
new file mode 100644
index 000000000..4a42ee5a6
--- /dev/null
+++ b/vendor/github.com/vishvananda/netlink/tcp.go
@@ -0,0 +1,18 @@
+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
+)