summaryrefslogtreecommitdiffhomepage
path: root/pkg/tcpip/network/fragmentation
diff options
context:
space:
mode:
authorgVisor bot <gvisor-bot@google.com>2020-10-08 07:59:21 +0000
committergVisor bot <gvisor-bot@google.com>2020-10-08 07:59:21 +0000
commit724969fe3f52362e2d0ce969b68dde58843b5b5b (patch)
treeea50fb9adb8b0372934ceb4150e9cf1f625b9347 /pkg/tcpip/network/fragmentation
parent8f70c8003e9d132fc766ed7d92ce805c093d518b (diff)
parent0c3134028d63774914f560d51588b11a3ecfed5e (diff)
Merge release-20200928.0-67-g0c3134028 (automated)
Diffstat (limited to 'pkg/tcpip/network/fragmentation')
-rw-r--r--pkg/tcpip/network/fragmentation/fragmentation.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/pkg/tcpip/network/fragmentation/fragmentation.go b/pkg/tcpip/network/fragmentation/fragmentation.go
index 888ad62a3..ed502a473 100644
--- a/pkg/tcpip/network/fragmentation/fragmentation.go
+++ b/pkg/tcpip/network/fragmentation/fragmentation.go
@@ -29,9 +29,6 @@ import (
)
const (
- // DefaultReassembleTimeout is based on the linux stack: net.ipv4.ipfrag_time.
- DefaultReassembleTimeout = 30 * time.Second
-
// HighFragThreshold is the threshold at which we start trimming old
// fragmented packets. Linux uses a default value of 4 MB. See
// net.ipv4.ipfrag_high_thresh for more information.