On Time RTOS-32 Documentation
Welcome
RTTarget-32
RTKernel-32
RTFiles-32
RTIP-32
RTIP-32 Programming Manual
Introduction
TCP/IP Networking
IP Packet Types
Sockets, IP, and Port Addresses
Blocking and Non-Blocking Sockets
MTU, MSS, and DCU
Fragmentation
UDP
TCP
Opening a TCP Connection
Closing a TCP Connection
TCP States
TCP Data Transfer
TCP Windows
TCP No Copy
Round Trip Time (RTT)
TCP Retransmission
TCP Keep Alive Packets
TCP Zero Window Probes
TCP Delayed Ack
TCP Silly Window Syndrome
TCP Nagle Algorithm
TCP Slow Start
TCP Congestion Avoidance
ICMP Source Quench
IGMP
Routing Table
ARP
NAT
Programming with RTIP-32
Demo Programs
PPP
DHCP Client
DHCP Server
FTP Client
FTP Server
TFTP Client
TFTP Server
Telnet Client
Telnet Server
Web Server
SNMP Agent
POP3 Client
SMTP Client
SNTP Client
SMB Server
SMB Client
SMB3 Server
SMB3 Client
WLAN Driver
RTIP-32 Reference Manual
RTPEG-32
RTUSB-32
|
TCP Silly Window Syndrome
Silly window syndrome is defined as small amounts of TCP data (instead of maximum segment sized) packets being sent. This is avoided by:
- The receiver not advertising small windows. This is accomplished by not advertising a larger window until the window size can be increased by either one maximum segment size or by 1/2 of the remote host's current window size.
- The sender must not transmit data unless:
- A packet is at least as large as the maximum segment size, or
- A packet with data which is half of the remote host's window size may be sent, or
- All of the output data may be sent and there is no unacknowledged data or the NAGLE algorithm is disabled.
TCP
TCP Delayed Ack
TCP Nagle Algorithm
|