-
Notifications
You must be signed in to change notification settings - Fork 578
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
windows: add iphlpapi functions for change notifications #211
Conversation
This PR (HEAD: f2bb83c) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/sys/+/603755. Important tips:
|
Message from Gopher Robot: Patch Set 1: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/603755. |
Message from Ian Chen: Patch Set 1: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/603755. |
f2bb83c
to
d438188
Compare
This PR (HEAD: d438188) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/sys/+/603755. Important tips:
|
Message from Ian Chen: Patch Set 3: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/603755. |
Message from Alex Brainman: Patch Set 3: Commit-Queue+1 (2 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/603755. |
Message from Go LUCI: Patch Set 3: Dry run: CV is trying the patch. Bot data: {"action":"start","triggered_at":"2024-10-31T10:36:35Z","revision":"c35876d6ed63bce0a4c439d1e93ab14999bdf321"} Please don’t reply on this GitHub thread. Visit golang.org/cl/603755. |
Message from Alex Brainman: Patch Set 3: -Commit-Queue Please don’t reply on this GitHub thread. Visit golang.org/cl/603755. |
Message from Go LUCI: Patch Set 3: This CL has passed the run Please don’t reply on this GitHub thread. Visit golang.org/cl/603755. |
Message from Go LUCI: Patch Set 3: LUCI-TryBot-Result+1 Please don’t reply on this GitHub thread. Visit golang.org/cl/603755. |
The NotifyIpInterfaceChange and NotifyUnicastIpAddressChange functions register a user-defined callback function for receiving network interface and IP address change notifications. The GetIfEntry2Ex and GetUnicastIpAddressEntry functions can be called to retrieve complete information about the changed interface or address. The CancelMibChangeNotify2 function deregisters for change notifications.
d438188
to
a8309cd
Compare
This PR (HEAD: a8309cd) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/sys/+/603755. Important tips:
|
Message from Ian Chen: Patch Set 4: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/603755. |
Message from Alex Brainman: Patch Set 4: Code-Review+2 Commit-Queue+1 Please don’t reply on this GitHub thread. Visit golang.org/cl/603755. |
Message from Go LUCI: Patch Set 4: Dry run: CV is trying the patch. Bot data: {"action":"start","triggered_at":"2024-11-01T09:52:16Z","revision":"c36f0372a9d3702e589b64e54e62f9a2eb2b3452"} Please don’t reply on this GitHub thread. Visit golang.org/cl/603755. |
Message from Alex Brainman: Patch Set 4: -Commit-Queue Please don’t reply on this GitHub thread. Visit golang.org/cl/603755. |
Message from Go LUCI: Patch Set 4: This CL has passed the run Please don’t reply on this GitHub thread. Visit golang.org/cl/603755. |
Message from Go LUCI: Patch Set 4: LUCI-TryBot-Result+1 Please don’t reply on this GitHub thread. Visit golang.org/cl/603755. |
Message from Alex Brainman: Patch Set 4: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/603755. |
Message from David Chase: Patch Set 4: Code-Review+1 Please don’t reply on this GitHub thread. Visit golang.org/cl/603755. |
Message from Carlos Amedee: Patch Set 4: Code-Review+1 Please don’t reply on this GitHub thread. Visit golang.org/cl/603755. |
The NotifyIpInterfaceChange and NotifyUnicastIpAddressChange functions register a user-defined callback function for receiving network interface and IP address change notifications. The GetIfEntry2Ex and GetUnicastIpAddressEntry functions can be called to retrieve complete information about the changed interface or address. The CancelMibChangeNotify2 function deregisters for change notifications. Change-Id: Iee29405ffa135c6aa0120f9aa046e3706e2bac47 GitHub-Last-Rev: a8309cd GitHub-Pull-Request: #211 Reviewed-on: https://go-review.googlesource.com/c/sys/+/603755 Reviewed-by: Alex Brainman <alex.brainman@gmail.com> Reviewed-by: Carlos Amedee <carlos@golang.org> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: David Chase <drchase@google.com>
This PR is being closed because golang.org/cl/603755 has been merged. |
The NotifyIpInterfaceChange and NotifyUnicastIpAddressChange functions
register a user-defined callback function for receiving network
interface and IP address change notifications. The GetIfEntry2Ex and
GetUnicastIpAddressEntry functions can be called to retrieve complete
information about the changed interface or address.
The CancelMibChangeNotify2 function deregisters for change
notifications.