another TCP socket option
l
TCP_NODELAY: can disable TCP’s Nagle
algorithm that delays sending small packets if
there is unACK’d data pending.
l
TCP_NODELAY also disables delayed ACKS
(TCP ACKs are cumulative).
l
Java Sockets:
–
getTcpNoDelay();
–
setTcpNoDelay(flag);