diff options
author | gVisor bot <gvisor-bot@google.com> | 2020-01-31 23:11:21 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-01-31 23:11:21 +0000 |
commit | 3eb302470365233c163b04b19be0ca13a2eefdba (patch) | |
tree | 6296d5efe0d6732f3b6dcfb7e122db8592c3e938 /pkg/tcpip/transport | |
parent | 661d21987d1d5d4d537dbed76b4045f512181454 (diff) | |
parent | 02997af5abd62d778fca4d01b047a6bdebab2090 (diff) |
Merge release-20200127.0-51-g02997af (automated)
Diffstat (limited to 'pkg/tcpip/transport')
-rw-r--r-- | pkg/tcpip/transport/tcp/accept.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/tcpip/transport/tcp/accept.go b/pkg/tcpip/transport/tcp/accept.go index 6101f2945..08afb7c17 100644 --- a/pkg/tcpip/transport/tcp/accept.go +++ b/pkg/tcpip/transport/tcp/accept.go @@ -271,8 +271,8 @@ func (l *listenContext) createConnectingEndpoint(s *segment, iss seqnum.Value, i return n, nil } -// createEndpoint creates a new endpoint in connected state and then performs -// the TCP 3-way handshake. +// createEndpointAndPerformHandshake creates a new endpoint in connected state +// and then performs the TCP 3-way handshake. func (l *listenContext) createEndpointAndPerformHandshake(s *segment, opts *header.TCPSynOptions, queue *waiter.Queue) (*endpoint, *tcpip.Error) { // Create new endpoint. irs := s.sequenceNumber |