nuttx/net
2014-06-29 12:22:50 -06:00
..
arp Move all socket-related files from net/ to net/socket. Move net/net.h to net/socket/socket.h 2014-06-28 17:25:18 -06:00
devif NET: Renaming of IP address types 2014-06-29 12:22:50 -06:00
icmp NET: Renaming of IP address types 2014-06-29 12:22:50 -06:00
igmp NET: Renaming of IP address types 2014-06-29 12:22:50 -06:00
iob NET: Create net/sockets directory and hook into the build/configuration system 2014-06-28 16:41:55 -06:00
ipv6 NET: Renaming of IP address types 2014-06-29 12:22:50 -06:00
netdev NET: Renaming of IP address types 2014-06-29 12:22:50 -06:00
pkt NET: Renaming of IP address types 2014-06-29 12:22:50 -06:00
route NET: Renaming of IP address types 2014-06-29 12:22:50 -06:00
socket Fixes for networking and tiny webserver from Max 2014-06-29 09:30:09 -06:00
tcp Rename static functions from uip_* to something more appropriate. Globally scoped functions will take more work 2014-06-28 19:26:16 -06:00
udp Rename static functions from uip_* to something more appropriate. Globally scoped functions will take more work 2014-06-28 19:26:16 -06:00
utils NET: Renaming of IP address types 2014-06-29 12:22:50 -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 Rename net/uip to net/devif. Rename uip/uip.h to devif/devif.h 2014-06-28 18:07:02 -06:00
README.txt

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