summaryrefslogtreecommitdiff
path: root/main/manager.c
diff options
context:
space:
mode:
authorMatthew Nicholson <mnicholson@digium.com>2010-07-01 14:34:31 +0000
committerMatthew Nicholson <mnicholson@digium.com>2010-07-01 14:34:31 +0000
commit269989c50f70ec4b40c3d3f07f7d9afa0c28d8c1 (patch)
tree27d463b0137aaac7f45d733013739d0b02e21016 /main/manager.c
parent57d9f8e42d78ad942e2b3906cd2b9e9a1ae6e42c (diff)
Altered my comment about TCP_NODELAY
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@273350 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/manager.c')
-rw-r--r--main/manager.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/main/manager.c b/main/manager.c
index 54d9760d2..678fd823e 100644
--- a/main/manager.c
+++ b/main/manager.c
@@ -4610,10 +4610,9 @@ static void *session_do(void *data)
goto done;
}
- /* XXX here we set TCP_NODELAY on the socket to disable Nagle's
- * algorithm. A better solution might be to buffer outgoing messages
- * until they are complete then write them to the socket in one burst
- * rather than sending them in bits and pieces. */
+ /* here we set TCP_NODELAY on the socket to disable Nagle's algorithm.
+ * This is necessary to prevent delays (caused by buffering) as we
+ * write to the socket in bits and peices. */
p = getprotobyname("tcp");
if (p) {
int arg = 1;