You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When sending an UDP broadcast packet via an UdpSocket,
I noticed that smoltcp attempted to check the ArpCache for 255.255.255.255
and therefore send an ARP request for that IP, which I believe to be unusual.
I think insteadof calling ArpCache::lookup a general lookup-function
should be called, which handles this (255.255.255.255 to MAC [0xff; 6] ) aswell
as other possible exceptions in the future.
Does that sound like the right approach?
I'd be fine with implementing it, but wanted some feedback first.
The text was updated successfully, but these errors were encountered:
When sending an UDP broadcast packet via an
UdpSocket
,I noticed that smoltcp attempted to check the ArpCache for
255.255.255.255
and therefore send an ARP request for that IP, which I believe to be unusual.
I think insteadof calling
ArpCache::lookup
a general lookup-functionshould be called, which handles this (
255.255.255.255
to MAC[0xff; 6]
) aswellas other possible exceptions in the future.
Does that sound like the right approach?
I'd be fine with implementing it, but wanted some feedback first.
The text was updated successfully, but these errors were encountered: