nuttx/net
chao.an 234d3df19f net/tcp: correct the available iobs count if throttle is enabled
The number of available iobs is already sub in iob_navail(true) on line 114

net/tcp/tcp_recvwindow.c:
...
 73 uint16_t tcp_get_recvwindow(FAR struct net_driver_s *dev)
...
114   niob_avail    = iob_navail(true);

Change-Id: I230927904d8db08ed8d95d7fa18c5c5fce08aa5e
Signed-off-by: chao.an <anchao@xiaomi.com>
2020-11-28 23:24:44 -06:00
..
arp
bluetooth
can style/Kconfig: remove unnecessary trailing whitespace 2020-11-28 12:20:30 +01:00
devif
icmp net/icmp: add sanity check to avoid wild data length 2020-11-27 06:45:16 -08:00
icmpv6 net/icmp: add sanity check to avoid wild data length 2020-11-27 06:45:16 -08:00
ieee802154 net/ieee802154/ieee802154_sendto.c: Fix a syslog format 2020-11-24 22:31:33 -08:00
igmp net/igmp/igmp_poll.c: Fix syslog formats 2020-11-23 05:00:10 -08:00
inet
ipforward
local
mld
neighbor net/neighbor/neighbor_ethernet_out.c: fix build error without ICMPv6 2020-11-27 10:27:45 -06:00
netdev style/Kconfig: remove unnecessary trailing whitespace 2020-11-28 12:20:30 +01:00
netlink
pkt
procfs
route
sixlowpan net/tcp: fallback to unthrottle pool to avoid deadlock 2020-11-28 00:03:47 -06:00
socket style/Kconfig: remove unnecessary trailing whitespace 2020-11-28 12:20:30 +01:00
tcp net/tcp: correct the available iobs count if throttle is enabled 2020-11-28 23:24:44 -06:00
udp net/udp/udp_sendto_buffered.c: Fix a syslog format 2020-11-24 22:31:33 -08:00
usrsock net/usrsock/usrsock_dev.c: Fix syslog formats 2020-11-27 05:18:57 -06:00
utils
Kconfig
Makefile style/Makefile: remove unnecessary trailing whitespace 2020-11-28 12:20:30 +01:00
net_initialize.c
README.txt

README
======

Directory Structure
===================

  nuttx/
   |
   `- net/
       |
       +- arp        - Address resolution protocol (IPv4)
       +- bluetooth  - PF_BLUETOOTH socket interface
       +- devif      - Stack/device interface layer
       +- icmp       - Internet Control Message Protocol (IPv4)
       +- icmpv6     - Internet Control Message Protocol (IPv6)
       +- ieee802154 - PF_IEEE802154 socket interface
       +- inet       - PF_INET/PF_INET6 socket interface
       +- ipforward  - IP forwarding logic
       +- local      - Unix domain (local) sockets
       +- mld        - Multicast Listener Discovery (MLD)
       +- neighbor   - Neighbor Discovery Protocol (IPv6)
       +- netdev     - Socket network device interface
       +- netlink    - Netlink IPC socket interface
       +- pkt        - "Raw" packet socket support
       +- sixlowpan  - 6LoWPAN implementation
       +- socket     - BSD socket interface
       +- route      - Routing table support
       +- tcp        - Transmission Control Protocol
       +- udp        - User Datagram Protocol
       +- usrsock    - User socket API for user-space networking stack
       `- utils      - Miscellaneous utility functions

    +-------------------------------------------------------------------++------------------------+
    |                     Application layer                             || usrsock daemon         |
    +-------------------------------------------------------------------++------------------------+
    +-------------------------------------------------------------------++----------------+ +-----+
    |                   Socket layer (socket/)                          || /dev/usrsock   | |     |
    +-------------------------------------------------------------------++----------------+ |     |
    +------------++--------------------------------------------------++-------------------+ |     |
    |  Network   || Protocol stacks (arp, ipv6, icmp, pkt, tcp, udp) || usrsock/          | |     |
    |   Device   |+--------------------------------------------------++-------------------+ |     |
    | Interface  |+------------------------------------++---------------------------------+ |     |
    | (netdev/)  ||  Network Device Interface (devif/) || Utilities                       | |     |
    +------------++------------------------------------++---------------------------------+ |     |
    +----------------------------------------------------------------+                      |     |
    |                    Network Device Drivers                      |                      | HAL |
    +----------------------------------------------------------------+                      +-----+
    +----------------------------------------------------------------+ +--------------------------+
    |                    Networking Hardware                         | |  Hardware TCP/IP Stack   |
    +----------------------------------------------------------------+ +--------------------------+