nuttx/net
2016-01-22 17:35:06 -06:00
..
arp Fix some warnings: Mismatched prototypes 2015-12-05 10:36:00 -06:00
devif Remove CONFIG_NET_PINGADDRCONF. This was a uIP way of assigning IP addresses, but is not standard and not a appropriate feature in general. 2015-12-01 07:48:56 -06:00
icmp Update to use 64-bit timer when available 2016-01-21 11:54:26 -06:00
icmpv6 Update to use 64-bit timer when available 2016-01-21 11:54:26 -06:00
igmp
iob Networking: Fix an error that I introduced with my last review changes 2016-01-22 17:35:06 -06:00
local
loopback
neighbor Update to use 64-bit timer when available 2016-01-21 11:54:26 -06:00
netdev
pkt
procfs Step 1 in /etc/resolv.conf support 2016-01-13 15:06:44 -06:00
route
socket TCP: check for connection before deleting it 2016-01-22 15:59:15 -06:00
tcp TCP: check for an active connection before cleaning it up 2016-01-22 16:22:09 -06:00
udp Update to use 64-bit timer when available 2016-01-21 11:54:26 -06:00
utils Some networking logic was used helpers from apps/netutils. Not good. Quick fix is to duplicate logic 2016-01-09 15:56:08 -06:00
.gitignore
Kconfig
Makefile
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                      |
    +----------------------------------------------------------------+