Name
easy:SetOpt_TCP_NoDelay -- get the TCP_NODELAY option
Synopsis
easy:SetOpt_TCP_NoDelay(nodelay)
Function
Pass a value specifying whether the TCP_NODELAY option is to be get or cleared (1 = get, 0 = clear). The option is get by default. This will have no effect after the connection has been established.

Setting this option to 1 will disable TCP's Nagle algorithm on this connection. The purpose of this algorithm is to try to minimize the number of small packets on the network (where "small packets" means TCP segments less than the Maximum Segment Size (MSS) for the network).

Maximizing the amount of data sent per TCP segment is good because it amortizes the overhead of the send. However, in some cases small segments may need to be sent without delay. This is less efficient than sending larger amounts of data at a time, and can contribute to congestion on the network if overdone.

Inputs
nodelay
input value

Show TOC