Netprog 2002 - Client/Server Issues
49
another TCP socket option
lTCP_NODELAY: can disable TCP’s Nagle algorithm that delays sending small packets if there is unACK’d data pending.
lTCP_NODELAY also disables delayed ACKS (TCP ACKs are cumulative).
lJava Sockets:
–getTcpNoDelay();
–setTcpNoDelay(flag);