incubator-nuttx/net
Gregory Nutt 6209c51206 net/: More clean-up of spacing/alignment issues 2015-10-08 15:10:04 -06:00
..
arp net/: More clean-up of spacing/alignment issues 2015-10-08 15:10:04 -06:00
devif net/: More clean-up of spacing/alignment issues 2015-10-08 15:10:04 -06:00
icmp net/: More clean-up of spacing/alignment issues 2015-10-08 15:10:04 -06:00
icmpv6 net/: More clean-up of spacing/alignment issues 2015-10-08 15:10:04 -06:00
igmp net/: More clean-up of spacing/alignment issues 2015-10-08 15:10:04 -06:00
iob Remove dangling whitespace 2015-10-04 15:28:54 -06:00
local net/: More clean-up of spacing/alignment issues 2015-10-08 15:10:04 -06:00
loopback
neighbor net/: More clean-up of spacing/alignment issues 2015-10-08 15:10:04 -06:00
netdev net/: More clean-up of spacing/alignment issues 2015-10-08 15:10:04 -06:00
pkt net/: More clean-up of spacing/alignment issues 2015-10-08 15:10:04 -06:00
route net/: More clean-up of spacing/alignment issues 2015-10-08 15:10:04 -06:00
socket net/: More clean-up of spacing/alignment issues 2015-10-08 15:10:04 -06:00
tcp net/: More clean-up of spacing/alignment issues 2015-10-08 15:10:04 -06:00
udp net/: More clean-up of spacing/alignment issues 2015-10-08 15:10:04 -06:00
utils net/: More clean-up of spacing/alignment issues 2015-10-08 15:10:04 -06:00
.gitignore
Kconfig Networking: Get rid of the tcp_mss macro. It is confusing and only obfuscates what is really going on 2015-08-27 08:39:17 -06:00
Makefile
README.txt
net_initialize.c

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