incubator-nuttx/net
Gregory Nutt b0dffdc2ca Fix a number of header files with mismatched 'extern C {' and '}' 2016-11-05 07:25:05 -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 net: Disable priority inheritance on all semaphores used for signaling 2016-11-03 12:17:02 -06:00
devif Costmetic changes 2016-10-24 16:18:30 -06:00
icmp Fix some mispellings of semaphore 2016-11-03 17:48:36 -06:00
icmpv6 net: Disable priority inheritance on all semaphores used for signaling 2016-11-03 12:17:02 -06:00
igmp net: Disable priority inheritance on all semaphores used for signaling 2016-11-03 12:17:02 -06:00
iob Without lowsyslog() *llerr() is not useful. Eliminate and replace with *err(). 2016-06-20 12:44:38 -06:00
local net: Disable priority inheritance on all semaphores used for signaling 2016-11-03 12:17:02 -06:00
loopback Fix a number of header files with mismatched 'extern C {' and '}' 2016-11-05 07:25:05 -06:00
neighbor Without lowsyslog() *llinfo() is not useful. Eliminate and replace with *info(). 2016-06-20 11:59:15 -06:00
netdev Break out internal interface psock_ioctl() 2016-07-06 07:30:09 -06:00
pkt net: Disable priority inheritance on all semaphores used for signaling 2016-11-03 12:17:02 -06:00
procfs Add CONFIG_DEBUG_ERROR. Change names of *dbg() * *err() 2016-06-11 15:50:49 -06:00
route Add CONFIG_DEBUG_ERROR. Change names of *dbg() * *err() 2016-06-11 15:50:49 -06:00
socket net: Disable priority inheritance on all semaphores used for signaling 2016-11-03 12:17:02 -06:00
tcp net: Disable priority inheritance on all semaphores used for signaling 2016-11-03 12:17:02 -06:00
udp net: Disable priority inheritance on all semaphores used for signaling 2016-11-03 12:17:02 -06:00
utils Remove some empty code section comments 2016-02-25 18:34:36 -06:00
.gitignore
Kconfig NET_TUN=y => NET_MULTIBUFFER=y 2016-09-20 13:06:47 -06:00
Makefile Several Makefiles: Add .PHONY definitions to prevent 'clean up to date' message weirdness. 2016-05-10 15:44:06 -06:00
README.txt
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                      |
    +----------------------------------------------------------------+