summaryrefslogtreecommitdiffhomepage
path: root/pkg/tcpip/network
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/tcpip/network')
-rw-r--r--pkg/tcpip/network/ipv4/ipv4.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkg/tcpip/network/ipv4/ipv4.go b/pkg/tcpip/network/ipv4/ipv4.go
index c0d334b56..0c41519df 100644
--- a/pkg/tcpip/network/ipv4/ipv4.go
+++ b/pkg/tcpip/network/ipv4/ipv4.go
@@ -38,9 +38,9 @@ const (
// ProtocolNumber is the ipv4 protocol number.
ProtocolNumber = header.IPv4ProtocolNumber
- // maxTotalSize is maximum size that can be encoded in the 16-bit
+ // MaxTotalSize is maximum size that can be encoded in the 16-bit
// TotalLength field of the ipv4 header.
- maxTotalSize = 0xffff
+ MaxTotalSize = 0xffff
// buckets is the number of identifier buckets.
buckets = 2048
@@ -204,8 +204,8 @@ func (p *protocol) Option(option interface{}) *tcpip.Error {
// calculateMTU calculates the network-layer payload MTU based on the link-layer
// payload mtu.
func calculateMTU(mtu uint32) uint32 {
- if mtu > maxTotalSize {
- mtu = maxTotalSize
+ if mtu > MaxTotalSize {
+ mtu = MaxTotalSize
}
return mtu - header.IPv4MinimumSize
}