Skip to content
Snippets Groups Projects
Commit d7310c7e authored by Joe Hershberger's avatar Joe Hershberger
Browse files

net: Make sure NetLoop is initialized when using NetConsole


Fix NetConsole bug that causes first packet header to claim a
source IP address of 0.0.0.0

Signed-off-by: default avatarJoe Hershberger <joe.hershberger@ni.com>
parent 46c495d5
No related branches found
No related tags found
No related merge requests found
...@@ -169,6 +169,12 @@ static int nc_start(void) ...@@ -169,6 +169,12 @@ static int nc_start(void)
else else
memset(nc_ether, 0, sizeof(nc_ether)); /* force arp request */ memset(nc_ether, 0, sizeof(nc_ether)); /* force arp request */
/*
* Initialize the static IP settings and buffer pointers
* incase we call NetSendUDPPacket before NetLoop
*/
net_init();
return 0; return 0;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment