incubator-nuttx/net
Gregory Nutt 03a77c1d18 Remove most unused references to CONFIG_NET_MULTICAST. Rename other uses of CONFIG_NET_MULTICAST to avoid naming comflicts. 2016-03-20 13:16:17 -06:00
..
6lowpan net/: Finish IEEE802154->6LOWPAN renaming; remove PF_IEEE804154; Move 6LoWPAN menu to inside Internet Protocol Menu 2016-02-27 07:26:20 -06:00
arp Remove some empty code section comments 2016-02-25 18:34:36 -06:00
devif net/: IEEE 802.15-4 basic build build structure. 2016-02-25 10:43:51 -06:00
icmp Remove some empty code section comments 2016-02-25 18:34:36 -06:00
icmpv6 Standardize some naming in code section comments 2016-02-21 18:09:04 -06:00
igmp Remove some empty code section comments 2016-02-25 18:34:36 -06:00
iob Remove some empty code section comments 2016-02-26 07:35:55 -06:00
local Networking: Cosmetic change 2016-02-24 19:02:51 -06:00
loopback Networking: With these changes, I can ping the local loopback device from the simulator 2015-08-24 13:49:12 -06:00
neighbor Networking: Remove the HSEC argument from devif_timer. 2016-02-03 12:12:41 -06:00
netdev net/: Finish IEEE802154->6LOWPAN renaming; remove PF_IEEE804154; Move 6LoWPAN menu to inside Internet Protocol Menu 2016-02-27 07:26:20 -06:00
pkt Remove some empty code section comments 2016-02-26 07:35:55 -06:00
procfs Step 1 in /etc/resolv.conf support 2016-01-13 15:06:44 -06:00
route Remove some empty code section comments 2016-02-25 18:34:36 -06:00
socket Remove some empty code section comments 2016-02-26 07:35:55 -06:00
tcp Fix a backward conditional test introduced with the last commit 2016-03-20 09:58:07 -06:00
udp Back out most of previous commit 2016-02-26 06:45:37 -06:00
utils Remove some empty code section comments 2016-02-25 18:34:36 -06:00
.gitignore .dSYM only needs to be in the same .gitignore files as .exe 2013-05-30 15:02:04 -06:00
Kconfig Remove most unused references to CONFIG_NET_MULTICAST. Rename other uses of CONFIG_NET_MULTICAST to avoid naming comflicts. 2016-03-20 13:16:17 -06:00
Makefile Clean up some naming; rename net/ieee802154 to net/6lowpan 2016-02-26 10:08:36 -06:00
README.txt Networking: Add NetDB support for the local loopback device 2015-08-24 10:08:26 -06:00
net_initialize.c Standardize some naming in code section comments 2016-02-21 18:09:04 -06:00

README.txt

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)
       +- iob      - I/O buffering logic
       +- 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
       `- 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                      |
    +----------------------------------------------------------------+