We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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 nanoFramework library: System.Net
Target: ESP32
Device capabilities output:
After successfully getting an IP address from a DHCP server the IP data is not updated properly.
Run this code:
NetworkHelper.ConnectWifiDhcp(MySsid, MyPassword, setDateTime: true, token: cs.Token); (......) var myNI = NetworkInterface.GetAllNetworkInterfaces(); foreach(var ni in myNI) { Debug.WriteLine($"IP: {ni.IPv4Address}"); }
Output is:
IP: 127.0.0.1 IP: 0.0.0.0
IP information should be correct and showing the assigned IP from the DHCP server.
The text was updated successfully, but these errors were encountered:
Closed through nanoframework/nf-interpreter#2145.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Details about Problem
.NET nanoFramework library: System.Net
Target: ESP32
Device capabilities output:
Description
After successfully getting an IP address from a DHCP server the IP data is not updated properly.
Detailed repro steps so we can see the same problem
Run this code:
Output is:
Other suggested things
Expected behaviour
IP information should be correct and showing the assigned IP from the DHCP server.
Sample Project
Screenshot
Additional context
I've made an effort to fix the bug
The text was updated successfully, but these errors were encountered: