Gregory Nutt
|
8f7752d956
|
Networking: Modify how callback structures are stored to avoid another potential use of a stal pointer.
|
2015-06-03 08:11:57 -06:00 |
Gregory Nutt
|
e81f279315
|
Networking: Modify event list handling: Now there are two event lists each device structure: (1) One is for ARP and ICMP data related evetns, the other is for device related events. Callback allocation/free routines no accept a device paramter as well as a list: If the device paramter is added, then the callback goes into both the connection-related liast AND the device event list. Thus each socket type can received both custom data-related events as well as common device related events.
|
2015-05-28 12:01:38 -06:00 |
Gregory Nutt
|
b94321cfb4
|
Extend device specific callbacks to ICMPv6 and ARP. Fix some IPv6 compilation errors that have crept in
|
2015-05-27 11:39:44 -06:00 |
Gregory Nutt
|
e4c602747b
|
Networking: Fixes another CONFIG_NET_NOINTS issues. When called sem_timedwait() with the network locked, the network stays logcked while we wait which is not what we want (without CONFIG_NET_NOINTS, interrupts are re-enabled while we wait and all is well).
|
2015-02-02 14:48:11 -06:00 |
Gregory Nutt
|
a07a764d42
|
ICMPv6: Adds basic logic to support verification that we have the IPv6 address in the Neighbor Table. This feature is important because otherwise the first packet sent to a remote peer will fail (it will be replaced with a Neighbor Solicitation).
|
2015-02-02 13:44:31 -06:00 |
Gregory Nutt
|
3385082b99
|
IPv6: Remove an unusd file (kruft from original IPv6 develoment); Add inital hooks to support automatic Neighbor Solitication
|
2015-02-02 10:49:50 -06:00 |
Gregory Nutt
|
9662f1750c
|
ARP: Add signal logic so that we do not have to wait so long with the network responses to ARP requests quickly
|
2014-08-19 07:47:32 -06:00 |
Gregory Nutt
|
4bba611dc6
|
Move some internal networking function protoypes out of the public include/nuttx/net/arp.h into to the private net/arp/arp.h
|
2014-08-18 16:35:20 -06:00 |
Gregory Nutt
|
548fda7834
|
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)
|
2014-08-18 15:24:51 -06:00 |
Gregory Nutt
|
b440fa18ca
|
arp_send.c: Partial implementation of logic to send ARP requests to assure that an IP address mapping is present in the ARP table
|
2014-08-18 14:29:02 -06:00 |
Gregory Nutt
|
1a7e1fb93b
|
arp_format.c: Move the logic that formats an ARP packet into a separate file where it can be re-used.
|
2014-08-18 12:37:40 -06:00 |
Gregory Nutt
|
6f1d354ef1
|
Move arp_out() from arp_inout.c to its own file
|
2014-08-18 11:21:53 -06:00 |
Gregory Nutt
|
985c016150
|
ARP: Add missing configuration option to select dumping of ARP packet headers. Move ARP dumping logic from arp_inout.c to its own file
|
2014-08-18 11:08:15 -06:00 |
Gregory Nutt
|
9e87ab90b8
|
NET: Move private definitions from include/nuttx/net/arp.h to net/arp/arp.h
|
2014-07-06 11:05:28 -06:00 |