- Aug 19, 2014
-
-
Gregory Nutt authored
ARP: Add signal logic so that we do not have to wait so long with the network responses to ARP requests quickly
-
- Aug 18, 2014
-
-
Gregory Nutt authored
Move some internal networking function protoypes out of the public include/nuttx/net/arp.h into to the private net/arp/arp.h
-
Gregory Nutt authored
-
Gregory Nutt authored
If CONFIG_NET_ARP_SEND is enabled, then all ICMP, TCP, and UDP send operations will call arp_send() before attempting the real send operation. arp_send() will check if the the IP address mapping is in 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.
-
Gregory Nutt authored
-
Gregory Nutt authored
arp_poll(): inished the implementation of logic to send ARP requests. Complete, fully hooked into the networking logic, and ready for test (but still untested)
-
Gregory Nutt authored
arp_send.c: Partial implementation of logic to send ARP requests to assure that an IP address mapping is present in the ARP table
-
Gregory Nutt authored
PKT sockets: Change how the IFF_NOARP flag is handled. This should be set only when data is moved into the buffer and cleared after tested by the ARP logic. Setting it globally can cause packets to be sent with no valid MAC addresses
-
Gregory Nutt authored
arp_format.c: Move the logic that formats an ARP packet into a separate file where it can be re-used.
-
Gregory Nutt authored
-
Gregory Nutt authored
-
Gregory Nutt authored
Move arp_arpin() from arp_inout.c to its own file. Rename arp_inout.c to arpipin.c because that is all that is left in the file
-
Gregory Nutt authored
-
Gregory Nutt authored
ARP: Add missing configuration option to select dumping of ARP packet headers. Move ARP dumping logic from arp_inout.c to its own file
-
Gregory Nutt authored
-
Gregory Nutt authored
sscanf(): NuttX libc tried to guess how many characters to parse, extracted them into a buffer, then ran strtol() on that buffer. That guess is often wrong. A better approach would be to call strtol() directly on the input data, using the endptr return value to determine how many characters to skip after parsing. From Kosma Moczek
-
Gregory Nutt authored
-
- Aug 17, 2014
-
-
Gregory Nutt authored
NSH link management now works! The last fix was to the Ethernet drivers: They cannot disable clocking to the Ethernet blok on ifdown. Otherwise, we cannot communicate with the PHY
-
Gregory Nutt authored
Change the way PHY interrupts work: disable automatically. Then we have to re-subscribe each time after the interrupt fires
-
Gregory Nutt authored
-
Gregory Nutt authored
-
Gregory Nutt authored
-
Gregory Nutt authored
-
Gregory Nutt authored
-
Gregory Nutt authored
-
Gregory Nutt authored
-
Gregory Nutt authored
-
- Aug 16, 2014
-
-
Gregory Nutt authored
-
Gregory Nutt authored
More of the PHY event notification logic change: Fix some compile errors when full feature is enabled; Add some missing ioctol logic
-
Gregory Nutt authored
-
Gregory Nutt authored
-
Gregory Nutt authored
Modified to support the change to the network ioctl signature changes. Also add support for new ioctl to setup PHY event notifications.
-
Gregory Nutt authored
Finishes the ioctl definition to subscribe to PHY events. Revamp network ioctl signature to support arguments other than struct mii_ioctl_data.
-
Gregory Nutt authored
-
Gregory Nutt authored
Add support for an ioctl that can be used to notify an application when there is a change in the network status signalled by a PHY interrupt
-
Gregory Nutt authored
-
Gregory Nutt authored
-
Gregory Nutt authored
-
Gregory Nutt authored
-
Gregory Nutt authored
-