incubator-nuttx/net
Xiang Xiao 1a9267db65 net/local: Add an option to specify the prefix of named pipe
to avoid the user create socket under the real filesystem
which isn't supported by nuttx VFS yet.

Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
Change-Id: Ib04c90e9c3c5a215bfda65515498d81e5f834895
2021-02-05 04:58:12 -08:00
..
arp Run nxstyle all .c and .h files modified by PR. 2020-05-17 14:01:00 -03:00
bluetooth net/: Correct some comments. 2021-01-15 16:23:12 -05:00
can net/: Correct some comments. 2021-01-15 16:23:12 -05:00
devif [imxrt] Fix FlexCAN tx dropping frames 2021-02-02 17:51:29 -03:00
icmp net: fix typos, incorrect comments, nxstyle 2020-12-13 09:06:28 -06:00
icmpv6 net: fix typos, incorrect comments, nxstyle 2020-12-13 09:06:28 -06:00
ieee802154 net/: Correct some comments. 2021-01-15 16:23:12 -05:00
igmp net/igmp: fix nxstyle warning 2020-12-03 12:23:04 +01:00
inet net: fix typos, incorrect comments, nxstyle 2020-12-13 09:06:28 -06:00
ipforward Fix typos in comments and documentation. 2020-03-16 20:01:11 -06:00
local net/local: Add an option to specify the prefix of named pipe 2021-02-05 04:58:12 -08:00
mld Sources and Docs: Fix typos and nxstyle issues 2020-10-02 04:54:52 +02:00
neighbor net/neighbor/neighbor_ethernet_out.c: fix build error without ICMPv6 2020-11-27 10:27:45 -06:00
netdev style/Kconfig: remove unnecessary trailing whitespace 2020-11-28 12:20:30 +01:00
netlink Kernel module should prefer functions with nx/kmm prefix 2021-01-13 08:57:58 +01:00
pkt net: Remove duplicate forward references. 2021-01-16 07:39:04 -08:00
procfs net/procfs: handle opendir("/proc/net/") correctly 2020-12-03 05:56:35 -06:00
route Fix nxstyle warning 2021-01-13 08:57:58 +01:00
sixlowpan net/tcp: add a member to record the current receiving window 2020-12-10 12:23:47 +09:00
socket net: fix typos, incorrect comments, nxstyle 2020-12-13 09:06:28 -06:00
tcp net: tcp: Add DEBUGASSERT() in psock_tcp_send() 2021-01-29 00:05:01 -08:00
udp net/udp/udp_sendto_buffered.c: Fix a syslog format 2020-11-24 22:31:33 -08:00
usrsock net: fix typos, incorrect comments, nxstyle 2020-12-13 09:06:28 -06:00
utils net/: Correct some comments. 2021-01-15 16:23:12 -05:00
Kconfig tcp: Remove incomplete support for TCP reassembly 2020-12-09 07:25:26 -08:00
Makefile style/Makefile: remove unnecessary trailing whitespace 2020-11-28 12:20:30 +01:00
README.txt net/loopback: Move g_lo_* global variable to libc/net/ 2020-03-30 09:47:28 -06:00
net_initialize.c net: Add SocketCAN support 2020-06-15 08:07:19 -06:00

README.txt

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   |
    +----------------------------------------------------------------+ +--------------------------+