diff options
author | TreeHugger Robot <treehugger-gerrit@google.com> | 2020-05-01 10:02:22 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2020-05-01 10:02:22 +0000 |
commit | db03d16466fd42cb4ebb676379b9728f0d2e432f (patch) | |
tree | 104c9ff04939e827a2456f31d1e46414a692b947 /src/android/net/ip/IpReachabilityMonitor.java | |
parent | 023ee726195a171404e6414232a8136825902f58 (diff) | |
parent | a962ab88881a102724142dc4d5e61551102c6400 (diff) |
Merge "Do not stop FdEventsReader on handlePacket error" into rvc-dev
Diffstat (limited to 'src/android/net/ip/IpReachabilityMonitor.java')
-rw-r--r-- | src/android/net/ip/IpReachabilityMonitor.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/android/net/ip/IpReachabilityMonitor.java b/src/android/net/ip/IpReachabilityMonitor.java index 2a0ca5d..3dbe662 100644 --- a/src/android/net/ip/IpReachabilityMonitor.java +++ b/src/android/net/ip/IpReachabilityMonitor.java @@ -345,7 +345,7 @@ public class IpReachabilityMonitor { // Find all the neighbors that have gone into FAILED state. // Ignore entries for which we have never received an event. If there are neighbors - // that never respond to ARP/ND, the kernel will send several FAILED event, then + // that never respond to ARP/ND, the kernel will send several FAILED events, then // an INCOMPLETE event, and then more FAILED events. The INCOMPLETE event will // populate the map and the subsequent FAILED event will be processed. if (val == null || val.nudState != StructNdMsg.NUD_FAILED) continue; |