Hello,
How can I force that my Rabbit sends a Gratuitous ARP message on startup?
I use the next code, but no Gratuitous ARP message is passed when I snif with Wireshark. (Other communication with the Rabbit works.)
Thanks,
Martin
ip = aton("10.0.105.2");
sock_init();
ifconfig(IF_ETH0,
IFS_IPADDR, ip,
IFS_UP,
IFS_END);
while (ifpending(IF_DEFAULT) == IF_COMING_UP)
tcp_tick(NULL);
_arp_send_gratuitous(IF_DEFAULT);