diff options
| author | Jianwei Mao <maojianwei2012@126.com> | 2022-08-26 08:45:23 +0000 |
|---|---|---|
| committer | Gopher Robot <gobot@golang.org> | 2022-08-27 05:42:03 +0000 |
| commit | a2d2e6e7cb12c57cd8f5af64909882bab1dbca19 (patch) | |
| tree | 4ba345c01e8e3ed7ec2124497e512a4ae12fea83 /src/net/interface.go | |
| parent | a0948493ac693b46b4124a4380fd044c6a05f1b3 (diff) | |
| download | go-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.go')
| -rw-r--r-- | src/net/interface.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/net/interface.go b/src/net/interface.go index 0e5d3202c9..e1c9a2e2ff 100644 --- a/src/net/interface.go +++ b/src/net/interface.go @@ -39,11 +39,12 @@ type Interface struct { type Flags uint const ( - FlagUp Flags = 1 << iota // interface is up + FlagUp Flags = 1 << iota // interface is administratively up FlagBroadcast // interface supports broadcast access capability FlagLoopback // interface is a loopback interface FlagPointToPoint // interface belongs to a point-to-point link FlagMulticast // interface supports multicast access capability + FlagRunning // interface is in running state ) var flagNames = []string{ @@ -52,6 +53,7 @@ var flagNames = []string{ "loopback", "pointtopoint", "multicast", + "running", } func (f Flags) String() string { |
