-
Notifications
You must be signed in to change notification settings - Fork 17.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
net: The result of net.Interfaces in go1.5.2 is different from go1.4.3 on windows #13476
Comments
additional bugs in go1.5.2:
|
Some bugs where fixed in go1.5.2 (comparing to go1.4.3). So it is to be expected that your program output will be different. I don't see a problem here. Or don't you want us to fix bugs? Alex |
It seems that net.Interfaces is no longer returning @chanxuehong's 28:d2:44:2b:99:02 or b0:05:94:fe:6a:dd interfaces in 1.5.2. At least on Linux and OpenBSD, we still list interfaces even if they're down and down have addresses, which seems consistent with the documentation for net.Interfaces. I also note the HardwareAddr for interface 7 changed from "a4:db:30:fe:d8:e1" to "a4:db:30:fe:d8:e1**:00:00**". Linux and OpenBSD both report addresses in MAC-48 (6 octet) form, and if it was to be converted to EUI-64 (8 octet) form I would think it should be "a4:db:30:ff:ff:fe:d8:e1" (or maybe "a4:db:30:ff:fe:fe:d8:e1"), no? |
At least the HardwareAddr change appears due to CL 3024 (ea22a08) changed:
to:
I.e., without using paddr.PhysicalAddressLength. |
@chanxuehong Can you try https://go-review.googlesource.com/#/c/17422/? (Disclaimer: I don't have any Windows machines myself, so all I've been able to test so far is that it still compiles.) |
The GetAdaptersAddresses function can retrieve information for IPv4 and IPv6 addresses. ref: https://msdn.microsoft.com/en-us/library/windows/desktop/aa365915(v=vs.85).aspx |
CL https://golang.org/cl/17422 mentions this issue. |
@litg True, but it looks like we're using SIO_GET_INTERFACE_LIST, which documents that it returns an array:
https://msdn.microsoft.com/en-us/library/windows/desktop/ms741621(v=vs.85).aspx Am I missing something? Is it still necessary to traverse the INTERFACE_INFOs as a linked list rather than an array for some reason? (Note: I have almost no experience with Windows programming, so I'm just making a best effort here until someone who knows what they're doing takes over. :-)) |
CL https://golang.org/cl/17412 mentions this issue. |
Hey. |
@SR-G It's a bug and will be fixed in Go 1.6. You can try with 1.6rc1 in the mean time: https://golang.org/dl/#go1.6rc1 |
1.What version of Go are you using ( go version )?
go1.5.2 vs go1.4.3
2.What operating system and processor architecture are you using?
windows 10 pro
amd64
3.What did you do?
4.What did you expect to see?
the same result
5.What did you see instead?
go1.4.3:
go1.5.2:
my interfaces config:
The text was updated successfully, but these errors were encountered: