Update ChangeLog

This commit is contained in:
Gregory Nutt 2014-08-19 07:52:52 -06:00
parent 9662f1750c
commit a9ca05266b
3 changed files with 5 additions and 2 deletions

View File

@ -8186,3 +8186,6 @@
the ARP table and, if not send ARP requests periodically until it is.
This eliminates losing the first outgoing message because there is not
mapping in the ARP table (2014-8-18).
* net/arp/arp_notify.c, arp_send.c, arp_arpin.c, and arp.h: Add
signalling logic so that we do not have to wait so long with the
network responses to ARP requests quickly (2014-8-19).

2
TODO
View File

@ -2280,7 +2280,7 @@ o Network Utilities (apps/netutils/)
[uIP] packets are dropped and overwritten by ARP packets if the
destination IP has not been mapped to a MAC."
Status: Probably closed. The basic ARP issue has been fixed (if
CONFIG_NET_ARP_SEND is enable), but this has not been verifie
CONFIG_NET_ARP_SEND is enable), but this has not been verified
with THTTPD.
Priority: Medium

View File

@ -206,7 +206,7 @@ int arp_wait(FAR struct arp_notify_s *notify, FAR struct timespec *timeout)
(void)arp_wait_cancel(notify);
/* Re-enable interrupts and return the result of the wait */
irqrestore(flags);
return ret;
}