nuttx/net
2021-02-26 10:21:02 +08:00
..
arp net/arp: add timeout to avoid infinite send wait 2021-02-22 10:37:58 +08:00
bluetooth Revert "net: unify socket info file descriptor" 2021-02-26 10:21:02 +08:00
can Revert "net: unify socket info file descriptor" 2021-02-26 10:21:02 +08:00
devif net/ip: do not drop the udp packet from IP layer 2021-01-29 17:36:48 +08:00
icmp net/icmp: add sanity check to avoid wild data length 2020-11-24 15:45:51 +08:00
icmpv6 net/icmp: add sanity check to avoid wild data length 2020-11-24 15:45:51 +08:00
ieee802154 Revert "net: unify socket info file descriptor" 2021-02-26 10:21:02 +08:00
igmp net/igmp: fix nxstyle warning 2020-12-05 15:33:21 +08:00
inet Revert "net: unify socket info file descriptor" 2021-02-26 10:21:02 +08:00
ipforward Fix typos in comments and documentation. 2020-03-16 20:01:11 -06:00
local Revert "net: unify socket info file descriptor" 2021-02-26 10:21:02 +08:00
mld Sources and Docs: Fix typos and nxstyle issues 2020-10-02 04:54:52 +02:00
neighbor Change all files come from Xiaomi/Pinecone to Apache License 2.0 2020-08-22 17:37:21 -06:00
netdev Revert "net: unify socket info file descriptor" 2021-02-26 10:21:02 +08:00
netlink net: Add SocketCAN support 2020-06-15 08:07:19 -06:00
pkt Revert "net: unify socket info file descriptor" 2021-02-26 10:21:02 +08:00
procfs net/procfs: handle opendir("/proc/net/") correctly 2020-12-01 15:12:24 +08:00
route Check return from nxsem_wait_initialize() 2020-03-29 20:11:10 +01:00
rpmsg Revert "net: unify socket info file descriptor" 2021-02-26 10:21:02 +08:00
sixlowpan Revert "net: unify socket info file descriptor" 2021-02-26 10:21:02 +08:00
socket Revert "net: unify socket info file descriptor" 2021-02-26 10:21:02 +08:00
tcp Revert "net: unify socket info file descriptor" 2021-02-26 10:21:02 +08:00
udp Revert "net: unify socket info file descriptor" 2021-02-26 10:21:02 +08:00
usrsock net/usrsock: fix outputted function name in debug prints 2020-09-21 10:36:31 -03:00
utils Fix nxstyle warning 2020-10-20 01:45:06 -07:00
Kconfig socket_rpmsg: add socket rpmsg support 2020-12-04 20:36:24 +08:00
Makefile socket_rpmsg: add socket rpmsg support 2020-12-04 20:36:24 +08:00
net_initialize.c net: Add SocketCAN support 2020-06-15 08:07:19 -06:00
README.txt net/loopback: Move g_lo_* global variable to libc/net/ 2020-03-30 09:47:28 -06:00

README
======

Directory Structure
===================

  nuttx/
   |
   `- net/
       |
       +- arp        - Address resolution protocol (IPv4)
       +- bluetooth  - PF_BLUETOOTH socket interface
       +- devif      - Stack/device interface layer
       +- icmp       - Internet Control Message Protocol (IPv4)
       +- icmpv6     - Internet Control Message Protocol (IPv6)
       +- ieee802154 - PF_IEEE802154 socket interface
       +- inet       - PF_INET/PF_INET6 socket interface
       +- ipforward  - IP forwarding logic
       +- local      - Unix domain (local) sockets
       +- mld        - Multicast Listener Discovery (MLD)
       +- neighbor   - Neighbor Discovery Protocol (IPv6)
       +- netdev     - Socket network device interface
       +- netlink    - Netlink IPC socket interface
       +- pkt        - "Raw" packet socket support
       +- sixlowpan  - 6LoWPAN implementation
       +- socket     - BSD socket interface
       +- route      - Routing table support
       +- tcp        - Transmission Control Protocol
       +- udp        - User Datagram Protocol
       +- usrsock    - User socket API for user-space networking stack
       `- utils      - Miscellaneous utility functions

    +-------------------------------------------------------------------++------------------------+
    |                     Application layer                             || usrsock daemon         |
    +-------------------------------------------------------------------++------------------------+
    +-------------------------------------------------------------------++----------------+ +-----+
    |                   Socket layer (socket/)                          || /dev/usrsock   | |     |
    +-------------------------------------------------------------------++----------------+ |     |
    +------------++--------------------------------------------------++-------------------+ |     |
    |  Network   || Protocol stacks (arp, ipv6, icmp, pkt, tcp, udp) || usrsock/          | |     |
    |   Device   |+--------------------------------------------------++-------------------+ |     |
    | Interface  |+------------------------------------++---------------------------------+ |     |
    | (netdev/)  ||  Network Device Interface (devif/) || Utilities                       | |     |
    +------------++------------------------------------++---------------------------------+ |     |
    +----------------------------------------------------------------+                      |     |
    |                    Network Device Drivers                      |                      | HAL |
    +----------------------------------------------------------------+                      +-----+
    +----------------------------------------------------------------+ +--------------------------+
    |                    Networking Hardware                         | |  Hardware TCP/IP Stack   |
    +----------------------------------------------------------------+ +--------------------------+