nuttx/net
2017-04-21 16:33:14 -06:00
..
arp Be consistent... Use Name: consistent in function headers vs Function: 2017-04-21 16:33:14 -06:00
devif Be consistent... Use Name: consistent in function headers vs Function: 2017-04-21 16:33:14 -06:00
icmp Be consistent... Use Name: consistent in function headers vs Function: 2017-04-21 16:33:14 -06:00
icmpv6 Be consistent... Use Name: consistent in function headers vs Function: 2017-04-21 16:33:14 -06:00
igmp Eliminate CONFIG_NO_NOINTS. Lots of files changed -> lots of testing needed. 2016-12-03 16:28:19 -06:00
local Be consistent... Use Name: consistent in function headers vs Function: 2017-04-21 16:33:14 -06:00
loopback Fix a number of header files with mismatched 'extern C {' and '}' 2016-11-05 07:25:05 -06:00
neighbor net/: Permit net/neighbor to build when IPv6 is defined, but not Ethernet. Needs more work to support 6loWPAN. Also included, some minor configuration updates for 6loWPAN. 2017-03-31 11:15:16 -06:00
netdev Be consistent... Use Name: consistent in function headers vs Function: 2017-04-21 16:33:14 -06:00
pkt Be consistent... Use Name: consistent in function headers vs Function: 2017-04-21 16:33:14 -06:00
procfs net procfs: Some long lines were being generated that cause buffer-related problems and corrupted output 2017-04-09 11:06:21 -06:00
route Be consistent... Use Name: consistent in function headers vs Function: 2017-04-21 16:33:14 -06:00
sixlowpan Be consistent... Use Name: consistent in function headers vs Function: 2017-04-21 16:33:14 -06:00
socket Be consistent... Use Name: consistent in function headers vs Function: 2017-04-21 16:33:14 -06:00
tcp Be consistent... Use Name: consistent in function headers vs Function: 2017-04-21 16:33:14 -06:00
udp Be consistent... Use Name: consistent in function headers vs Function: 2017-04-21 16:33:14 -06:00
usrsock Be consistent... Use Name: consistent in function headers vs Function: 2017-04-21 16:33:14 -06:00
utils Be consistent... Use Name: consistent in function headers vs Function: 2017-04-21 16:33:14 -06:00
.gitignore
Kconfig Move net/iob to drivers/iob so that the I/O buffering feature can be available to other drivers when networking is disabled. 2017-04-20 16:08:49 -06:00
Makefile Move net/iob to drivers/iob so that the I/O buffering feature can be available to other drivers when networking is disabled. 2017-04-20 16:08:49 -06:00
net_initialize.c Move net/iob to drivers/iob so that the I/O buffering feature can be available to other drivers when networking is disabled. 2017-04-20 16:08:49 -06:00
README.txt Move net/iob to drivers/iob so that the I/O buffering feature can be available to other drivers when networking is disabled. 2017-04-20 16:08:49 -06:00

README
======

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

  nuttx/
   |
   `- net/
       |
       +- arp      - Address resolution protocol (IPv4)
       +- devif    - Stack/device interface layer
       +- icmp     - Internet Control Message Protocol (IPv4)
       +- icmpv6   - Internet Control Message Protocol (IPv6)
       +- local    - Unix domain (local) sockets
       +- loopback - Local loopback
       +- neighbor - Neighbor Discovery Protocol (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
       +- 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   |
    +----------------------------------------------------------------+ +--------------------------+