diff options
author | Ghanan Gowripalan <ghanan@google.com> | 2020-09-23 17:13:32 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-09-23 17:17:50 -0700 |
commit | e02e7e999a65d4cb7784e67de74fb4ffa556b386 (patch) | |
tree | 2f9f764a14f357e0e950061269f87fe0d9c170b5 /pkg/tcpip/stack | |
parent | 994062ec9ca70110c39d9c004cad62e23d4c7a41 (diff) |
Remove unused field from neighborEntry
PiperOrigin-RevId: 333405169
Diffstat (limited to 'pkg/tcpip/stack')
-rw-r--r-- | pkg/tcpip/stack/neighbor_entry.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/pkg/tcpip/stack/neighbor_entry.go b/pkg/tcpip/stack/neighbor_entry.go index 0068cacb8..213646160 100644 --- a/pkg/tcpip/stack/neighbor_entry.go +++ b/pkg/tcpip/stack/neighbor_entry.go @@ -73,8 +73,7 @@ const ( type neighborEntry struct { neighborEntryEntry - nic *NIC - protocol tcpip.NetworkProtocolNumber + nic *NIC // linkRes provides the functionality to send reachability probes, used in // Neighbor Unreachability Detection. |