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 Delayed Ack
To cut back on network traffic, a host will not send an acknowledgment right away, possibly allowing more than one TCP data package to be acknowledged in one reply packet or an acknowledgment of the packet to be sent along with data to be sent to the remote host. Sending an acknowledgment may be delayed based upon the following rules:
- An ack cannot be delayed more than CFG_MAX_DELAY_ACK msecs.
- In a stream of full sized (maximum segment size) packets, every other packet must be acknowledged.
- Delay ack must be enabled for the socket. This option can be enabled or disabled by function setsockopt. The default value is enabled.
TCP
TCP Zero Window Probes
TCP Silly Window Syndrome
|