aboutsummaryrefslogtreecommitdiff
path: root/src/net/interface_linux.go
diff options
context:
space:
mode:
authorJianwei Mao <maojianwei2012@126.com>2022-08-26 08:45:23 +0000
committerGopher Robot <gobot@golang.org>2022-08-27 05:42:03 +0000
commita2d2e6e7cb12c57cd8f5af64909882bab1dbca19 (patch)
tree4ba345c01e8e3ed7ec2124497e512a4ae12fea83 /src/net/interface_linux.go
parenta0948493ac693b46b4124a4380fd044c6a05f1b3 (diff)
downloadgo-a2d2e6e7cb12c57cd8f5af64909882bab1dbca19.tar.xz
net: add FlagRunning to exactly reflect the states of an interface.
Correctly set this flag while parsing the syscall result. The FlagUp flag can not distinguish the following situations: 1. interface is plugged, automatically up, and in running(UP) state 2. interface is not plugged, administratively or manually set to up, but in DOWN state So, We can't distinguish the state of a NIC by the FlagUp flag alone. Fixes #53482 Change-Id: I43796bea1a7f72d1fddfef914efe603c81995e1b GitHub-Last-Rev: 686b5d888e97e9b90cf36ac0c15943eb97e125d4 GitHub-Pull-Request: golang/go#53484 Reviewed-on: https://go-review.googlesource.com/c/go/+/413454 TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@google.com> Run-TryBot: Ian Lance Taylor <iant@google.com> Auto-Submit: Ian Lance Taylor <iant@google.com> Reviewed-by: Ryan Schuster <shuey19831@gmail.com> Reviewed-by: Jianwei Mao <maojianwei2020@gmail.com> Reviewed-by: Damien Neil <dneil@google.com>
Diffstat (limited to 'src/net/interface_linux.go')
-rw-r--r--src/net/interface_linux.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/net/interface_linux.go b/src/net/interface_linux.go
index 441ab2f880..9112ecc854 100644
--- a/src/net/interface_linux.go
+++ b/src/net/interface_linux.go
@@ -99,6 +99,9 @@ func linkFlags(rawFlags uint32) Flags {
if rawFlags&syscall.IFF_UP != 0 {
f |= FlagUp
}
+ if rawFlags&syscall.IFF_RUNNING != 0 {
+ f |= FlagRunning
+ }
if rawFlags&syscall.IFF_BROADCAST != 0 {
f |= FlagBroadcast
}