|
|
|
|
|
by colanderman
3862 days ago
|
|
You don't need to entirely disable Nagle; just flash TCP_NODELAY on then off immediately after sending a packet for which you will block for a reply. This way you still get the benefit Nagle brings of coalescing small writes, without the downside. (Alternatively, turn Nagle off entirely and buffer writes manually or using MSG_MORE or TCP_CORK.) |
|