diff options
author | Bhasker Hariharan <bhaskerh@google.com> | 2018-07-11 15:06:29 -0700 |
---|---|---|
committer | Shentubot <shentubot@google.com> | 2018-07-11 15:07:19 -0700 |
commit | c15cb8d432034e121497dbdc74d2842d5201552f (patch) | |
tree | 3fe44c4bcb0f0e9391961675a48d26a0bc4c0477 /pkg/tcpip/stack/nic.go | |
parent | b9c469f37282129031a6036cfe43028faaeb1a96 (diff) |
Automated rollback of changelist 203157739
PiperOrigin-RevId: 204196916
Change-Id: If632750fc6368acb835e22cfcee0ae55c8a04d16
Diffstat (limited to 'pkg/tcpip/stack/nic.go')
-rw-r--r-- | pkg/tcpip/stack/nic.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pkg/tcpip/stack/nic.go b/pkg/tcpip/stack/nic.go index c1480f97b..25c06cba5 100644 --- a/pkg/tcpip/stack/nic.go +++ b/pkg/tcpip/stack/nic.go @@ -327,7 +327,8 @@ func (n *NIC) DeliverNetworkPacket(linkEP LinkEndpoint, remoteLinkAddr tcpip.Lin return } - r := makeRoute(protocol, dst, src, linkEP.LinkAddress(), ref) + r := makeRoute(protocol, dst, src, ref) + r.LocalLinkAddress = linkEP.LinkAddress() r.RemoteLinkAddress = remoteLinkAddr ref.ep.HandlePacket(&r, vv) ref.decRef() |