diff options
author | Ian Gudger <igudger@google.com> | 2020-01-31 15:08:17 -0800 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-01-31 15:09:13 -0800 |
commit | 02997af5abd62d778fca4d01b047a6bdebab2090 (patch) | |
tree | 606f7069008223adf3edf93005ac43d5498b835c | |
parent | 04cccaaeeed22a28a42fc4c1406b43a966a5d886 (diff) |
Fix method comment to match method name.
PiperOrigin-RevId: 292624867
-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 |