You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tailscale/net/interfaces
Brad Fitzpatrick fee74e7ea7 net/interfaces, wgengine/monitor: fix false positives link changes
interfaces.State.String tries to print a concise summary of the
network state, removing any interfaces that don't have any or any
interesting IP addresses. On macOS and iOS, for instance, there are a
ton of misc things.

But the link monitor based its are-there-changes decision on
interfaces.State.Equal, which just used reflect.DeepEqual, including
comparing all the boring interfaces. On macOS, when turning wifi on or off, there
are a ton of misc boring interface changes, resulting in hitting an earlier
check I'd added on suspicion this was happening:

    [unexpected] network state changed, but stringification didn't

This fixes that by instead adding a new
interfaces.State.RemoveUninterestingInterfacesAndAddresses method that
does, uh, that. Then use that in the monitor. So then when Equal is
used later, it's DeepEqualing the already-cleaned version with only
interesting interfaces.

This makes cmd/tailscaled debug --monitor much less noisy.

Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
4 years ago
..
interfaces.go net/interfaces, wgengine/monitor: fix false positives link changes 4 years ago
interfaces_darwin.go net/interfaces: merge darwin files for DefaultRouteInterface in sandbox 4 years ago
interfaces_darwin_cgo.go net/interfaces: log why when we failed to look up gateway on macOS 4 years ago
interfaces_darwin_cgo_test.go net/interfaces: use syscalls to find private gateway IP address 4 years ago
interfaces_darwin_nocgo.go net/interfaces: use syscalls to find private gateway IP address 4 years ago
interfaces_default_route_test.go net/{interfaces,netns}: add some new tests, missed from prior commit 4 years ago
interfaces_defaultrouteif_todo.go net/interfaces: merge darwin files for DefaultRouteInterface in sandbox 4 years ago
interfaces_linux.go net/netns, net/interfaces: move defaultRouteInterface, add Android fallback 4 years ago
interfaces_linux_test.go net/netns, net/interfaces: move defaultRouteInterface, add Android fallback 4 years ago
interfaces_test.go net/interfaces: remove IsTailscaleIP, make callers use tsaddr. 4 years ago
interfaces_windows.go net/interfaces: ignore bogus proxy URLs from winhttp [windows] 4 years ago
interfaces_windows_test.go net/interfaces: quiet PAC detection logging in no-PAC case, add benchmark 4 years ago
route.h net/interfaces: use syscalls to find private gateway IP address 4 years ago