incubator-nuttx/net
Xiang Xiao 1a95cce1a3 build: Move .config check to the top Makefile
remove the workaround to handle the inexistence of .config/Make.defs

Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
2020-05-20 17:57:34 +01:00
..
arp Run nxstyle all .c and .h files modified by PR. 2020-05-17 14:01:00 -03:00
bluetooth Run nxstyle all .c and .h files modified by PR. 2020-05-17 14:01:00 -03:00
devif Fix some macOS sim warnings. 2020-04-11 22:27:42 +01:00
icmp Run nxstyle all .c and .h files modified by PR. 2020-05-17 14:01:00 -03:00
icmpv6 Run nxstyle all .c and .h files modified by PR. 2020-05-17 14:01:00 -03:00
ieee802154 Run nxstyle all .c and .h files modified by PR. 2020-05-17 14:01:00 -03:00
igmp sched/: Make more naming consistent 2020-05-17 14:01:00 -03:00
inet net/: Whenever the network initializes an IPv4 address, it must clear sin_zero. 2020-02-25 15:53:39 +01:00
ipforward Fix typos in comments and documentation. 2020-03-16 20:01:11 -06:00
local Run nxstyle all .c and .h files modified by PR. 2020-05-17 14:01:00 -03:00
mld sched/: Make more naming consistent 2020-05-17 14:01:00 -03:00
neighbor Rename clock_systime[r|spec] to clock_systime_[ticks|timespec] 2020-05-10 14:35:50 -06:00
netdev net/netdev/netdev_register.c: Add some comments. 2020-05-15 15:48:00 +01:00
netlink sched/: Make more naming consistent 2020-05-17 14:01:00 -03:00
pkt sched/: Make more naming consistent 2020-05-17 14:01:00 -03:00
procfs Run codespell -w with the latest dictonary again 2020-02-23 22:27:46 +01:00
route Check return from nxsem_wait_initialize() 2020-03-29 20:11:10 +01:00
sixlowpan sched/: Make more naming consistent 2020-05-17 14:01:00 -03:00
socket net/sockopt: fix nxstyle warning 2020-05-14 07:53:15 -06:00
tcp net: tcp: Fix port info in warning message in tcp_input.c 2020-05-19 13:36:45 +08:00
udp Run nxstyle all .c and .h files modified by PR. 2020-05-17 14:01:00 -03:00
usrsock Run nxstyle all .c and .h files modified by PR. 2020-05-17 14:01:00 -03:00
utils Run codespell -w with the latest dictonary again 2020-02-23 22:27:46 +01:00
.gitignore Revert "Don't generate .depend anymore" 2020-03-22 23:07:29 -05:00
Kconfig net/loopback: Move g_lo_* global variable to libc/net/ 2020-03-30 09:47:28 -06:00
Makefile build: Move .config check to the top Makefile 2020-05-20 17:57:34 +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

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