nuttx/net
2014-07-21 18:46:47 -06:00
..
arp NET: Fix a few problems after big merge of network reorganization 2014-07-06 17:58:36 -06:00
devif Add inclusion of assert.h to so files that use DEBUGASSERT 2014-07-21 18:46:47 -06:00
icmp NET: Rename network interrupt event flags more appropriately: TCP_, UDP_, ICMP_, or PKT_ vs UIP_ 2014-07-06 17:22:02 -06:00
igmp NET: Rename TCP state values: UIP_ -> TCP_ 2014-07-06 16:10:26 -06:00
iob IOB: Change suggested by Rony Xln 2014-07-08 07:13:50 -06:00
ipv6 NET: Add a few missing configuration options to the Kconfig files 2014-07-06 13:04:27 -06:00
netdev NET: Move most of the contents of include/nuttx/net/igmp.h moved to net/igmp/igmp.h 2014-07-05 15:15:40 -06:00
pkt NET: Rename network interrupt event flags more appropriately: TCP_, UDP_, ICMP_, or PKT_ vs UIP_ 2014-07-06 17:22:02 -06:00
route NET: emoved all includes of uip.h; added includes of ip.h wherever needed. Tried to fix problems of the now missing sneak inclusions because uip.h was removed. There are probably a few of these that were missed. 2014-07-04 19:13:08 -06:00
socket Add inclusion of assert.h to so files that use DEBUGASSERT 2014-07-21 18:46:47 -06:00
tcp NET: Fix a few problems after big merge of network reorganization 2014-07-06 17:58:36 -06:00
udp NET: Rename network interrupt event flags more appropriately: TCP_, UDP_, ICMP_, or PKT_ vs UIP_ 2014-07-06 17:22:02 -06:00
utils NET: Oops. Forgot to add a file before committing 2014-07-05 15:21:13 -06:00
.gitignore
Kconfig Move IPv6 files from net/uip to net/ipv6 2014-06-28 17:42:34 -06:00
Makefile Rename net/uip to net/devif. Rename uip/uip.h to devif/devif.h 2014-06-28 18:07:02 -06:00
net_initialize.c NET: Move private definitions from include/nuttx/net/tcp to net/tcp/tcp.h 2014-07-06 12:34:27 -06:00
README.txt Clean-up naming associated with network checksums 2014-06-27 17:51:32 -06:00

README
======

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

  nuttx/
   |
   `- net/
       |
       +- arp      - Address resolution protocol
       +- devif    - Stack/device interface layer
       +- icmp     - Internet Control Message Protocol
       +- iob      - I/O buffering logic
       +- ipv6     - Logic unique to 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
       `- utils    - Miscellaneous utility functions


    +----------------------------------------------------------------+
    |                     Application layer                          |
    +----------------------------------------------------------------+
    +----------------------------------------------------------------+
    |                   Socket layer (socket/)                       |
    +----------------------------------------------------------------+
    +------------++--------------------------------------------------+
    |  Network   || Protocol stacks (arp, ipv6, icmp, pkt, tcp, udp) |
    |   Device   |+--------------------------------------------------+
    | Interface  |+------------------------------------++------------+
    | (netdev/)  ||  Network Device Interface (devif/) || Utilities  |
    +------------++------------------------------------++------------+
    +----------------------------------------------------------------+
    |                    Network Device Drivers                      |
    +----------------------------------------------------------------+