diff options
author | Susant Sahani <susant@redhat.com> | 2014-07-28 12:18:29 +0530 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2014-08-14 03:15:59 +0200 |
commit | 4427c3f43a87c2e0c784fda6be1b9715be820733 (patch) | |
tree | 14a01c5bc763bdd523cb9fdb663fc37df2a8716f /src/core/socket.h | |
parent | e9e74f28d783a052dce7edfa94d7918bb591ba7a (diff) |
socket: add support for tcp nagle
This patch adds support for TCP TCP_NODELAY socket option. This can be
configured via NoDelay conf parameter. TCP Nagle's algorithm works by
combining a number of small outgoing messages, and sending them all at
once. This controls the TCP_NODELAY socket option.
Diffstat (limited to 'src/core/socket.h')
-rw-r--r-- | src/core/socket.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/socket.h b/src/core/socket.h index 814a3bfabc..98396e7320 100644 --- a/src/core/socket.h +++ b/src/core/socket.h @@ -134,6 +134,7 @@ struct Socket { /* Socket options */ bool keep_alive; + bool no_delay; bool free_bind; bool transparent; bool broadcast; |