diff options
author | gVisor bot <gvisor-bot@google.com> | 2020-03-02 21:20:08 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-03-02 21:20:08 +0000 |
commit | 13b21d37bf991ce920d6b0fb017b32d0aeaf2488 (patch) | |
tree | 72f9bf2b427d319d98c8b15ccdc17f29589c647e /pkg | |
parent | 9f9c52c16339bed45e98ed003da7025690aaf3a4 (diff) | |
parent | 8821a7104f8c8f263b88def1a646d518ec3f5dd2 (diff) |
Merge release-20200219.0-80-g8821a71 (automated)
Diffstat (limited to 'pkg')
-rw-r--r-- | pkg/tcpip/stack/nic.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/tcpip/stack/nic.go b/pkg/tcpip/stack/nic.go index 46d3a6646..3e6196aee 100644 --- a/pkg/tcpip/stack/nic.go +++ b/pkg/tcpip/stack/nic.go @@ -451,7 +451,7 @@ func (n *NIC) primaryIPv6Endpoint(remoteAddr tcpip.Address) *referencedNetworkEn cs := make([]ipv6AddrCandidate, 0, len(primaryAddrs)) for _, r := range primaryAddrs { // If r is not valid for outgoing connections, it is not a valid endpoint. - if !r.isValidForOutgoing() { + if !r.isValidForOutgoingRLocked() { continue } |