incubator-nuttx/net
Nathan Hartman f9f8c6a79b net/icmp/icmp_netpoll.c: Fix return of uninitialized 'ret' when no error occurs. That is, on what should be a successful return from this function, an uninitialized value was returned, which may indicate an undeserved error. 2020-01-02 14:40:08 -06:00
..
arp Fix wait loop and void cast (#24) 2020-01-02 10:54:43 -06:00
bluetooth Fix wait loop and void cast (#24) 2020-01-02 10:54:43 -06:00
devif Correct some problems with network timed events when there are multiple network devices in the configuration. 2019-12-24 10:37:30 -06:00
icmp net/icmp/icmp_netpoll.c: Fix return of uninitialized 'ret' when no error occurs. That is, on what should be a successful return from this function, an uninitialized value was returned, which may indicate an undeserved error. 2020-01-02 14:40:08 -06:00
icmpv6 Fix wait loop and void cast (#24) 2020-01-02 10:54:43 -06:00
ieee802154 Fix wait loop and void cast (#24) 2020-01-02 10:54:43 -06:00
igmp Fix wait loop and void cast (#24) 2020-01-02 10:54:43 -06:00
inet Fix wait loop and void cast (#24) 2020-01-02 10:54:43 -06:00
ipforward Fix wait loop and void cast (#24) 2020-01-02 10:54:43 -06:00
local Fix wait loop and void cast (#24) 2020-01-02 10:54:43 -06:00
loopback tools/nxstyle.c: Fix logic error that prevent detecion of '/' and '/=' as operators. net/: Minor updates resulting from testing tools/nxstyle. 2019-03-11 12:48:39 -06:00
mld Fix wait loop and void cast (#24) 2020-01-02 10:54:43 -06:00
neighbor Trivial update to some comments. 2019-11-08 12:06:29 -06:00
netdev Fix wait loop and void cast (#24) 2020-01-02 10:54:43 -06:00
netlink Fix wait loop and void cast (#24) 2020-01-02 10:54:43 -06:00
pkt Fix wait loop and void cast (#24) 2020-01-02 10:54:43 -06:00
procfs Fix wait loop and void cast (#24) 2020-01-02 10:54:43 -06:00
route Fix wait loop and void cast (#24) 2020-01-02 10:54:43 -06:00
sixlowpan Fix wait loop and void cast (#24) 2020-01-02 10:54:43 -06:00
socket Fix wait loop and void cast (#24) 2020-01-02 10:54:43 -06:00
tcp Fix wait loop and void cast (#24) 2020-01-02 10:54:43 -06:00
udp Fix wait loop and void cast (#24) 2020-01-02 10:54:43 -06:00
usrsock Fix wait loop and void cast (#24) 2020-01-02 10:54:43 -06:00
utils Fix wait loop and void cast (#24) 2020-01-02 10:54:43 -06:00
.gitignore
Kconfig net/Kconfig: Ethernet packet buffer size cannot be permitted to go below 1294 is IPv6 is selected. 2019-08-31 09:08:32 -06:00
Makefile net/mld: Add basic build structure for Multicast Listener Discovery (MLD). No real MLD logic yet. Only a few hooks to capture and dispatch MLD ICMPv6 packets. 2018-10-31 14:10:19 -06:00
README.txt net/mld: Add basic build structure for Multicast Listener Discovery (MLD). No real MLD logic yet. Only a few hooks to capture and dispatch MLD ICMPv6 packets. 2018-10-31 14:10:19 -06:00
net_initialize.c Squashed commit of the following: 2019-06-02 11:05:31 -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
       +- loopback   - Local loopback
       +- 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   |
    +----------------------------------------------------------------+ +--------------------------+