Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions networkd/network_monitor_thread.ml
Original file line number Diff line number Diff line change
Expand Up @@ -263,8 +263,7 @@ let ip_watcher () =
let rec loop () =
let line = input_line in_channel in
(* Do not send events for link-local IPv6 addresses, and removed IPs *)
if String.has_substr line "inet" && not (String.has_substr line "inet6 fe80") &&
not (String.has_substr line "Deleted") then begin
if String.has_substr line "inet" && not (String.has_substr line "inet6 fe80") then begin
(* Ignore changes for the next second, since they usually come in bursts,
* and signal only once. *)
Thread.delay 1.;
Expand Down