mirror of
https://github.com/apache/nuttx.git
synced 2025-01-13 13:18:50 +08:00
.. | ||
arp | ||
icmp | ||
igmp | ||
iob | ||
ipv6 | ||
netdev | ||
pkt | ||
route | ||
socket | ||
tcp | ||
udp | ||
uip | ||
utils | ||
.gitignore | ||
Kconfig | ||
Makefile | ||
net_initialize.c | ||
README.txt |
README ====== Directory Structure =================== nuttx/ | `- net/ | +- arp - Address resolution protocol +- devif - Stack/device interface layer +- icmp - Internet Control Message Protocol +- iob - I/O buffering logic +- ipv6 - Logic unique to IPv6 +- netdev - Socket network device interface +- pkt - "Raw" packet socket support +- socket - BSD socket interface +- route - Routing table support +- tcp - Transmission Control Protocol +- udp - User Datagram Protocol `- utils - Miscellaneous utility functions +----------------------------------------------------------------+ | Application layer | +----------------------------------------------------------------+ +----------------------------------------------------------------+ | Socket layer (socket/) | +----------------------------------------------------------------+ +------------++--------------------------------------------------+ | Network || Protocol stacks (arp, ipv6, icmp, pkt, tcp, udp) | | Device |+--------------------------------------------------+ | Interface |+------------------------------------++------------+ | (netdev/) || Network Device Interface (devif/) || Utilities | +------------++------------------------------------++------------+ +----------------------------------------------------------------+ | Network Device Drivers | +----------------------------------------------------------------+