Index: trunk/Cosy/tcpip/MTcpIpIO.cc
===================================================================
--- trunk/Cosy/tcpip/MTcpIpIO.cc	(revision 14320)
+++ trunk/Cosy/tcpip/MTcpIpIO.cc	(revision 14321)
@@ -50,4 +50,5 @@
     gDebug=save;
     fTxSocket->SetOption(kNoBlock, 1);
+    fTxSocket->SetOption(kNodelay, 1);
 
     MTcpIpO::RunThread();
@@ -185,4 +186,5 @@
         fTxSocket = new TSocket(a.GetHostAddress(), fPortTx);
         fTxSocket->SetOption(kNoBlock, 1);
+        fTxSocket->SetOption(kNodelay, 1);
 
         fMutex.UnLock();
@@ -265,4 +267,5 @@
         fTxSocket = new TSocket(a.GetHostAddress(), fPortTx);
         fTxSocket->SetOption(kNoBlock, 1);
+        fTxSocket->SetOption(kNoDelay, 1);
 
         fMutex.UnLock();
@@ -442,4 +445,5 @@
         TServerSocket *server=new TServerSocket(fPortRx, kTRUE, 0);
         server->SetOption(kNoBlock, 1);
+        server->SetOption(kNoDelay, 1);
 
         while (!IsThreadCanceled() && server->IsValid())
