Changeset 14321 for trunk/Cosy/tcpip/MTcpIpIO.cc
- Timestamp:
- 08/07/12 09:47:52 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Cosy/tcpip/MTcpIpIO.cc
r12598 r14321 50 50 gDebug=save; 51 51 fTxSocket->SetOption(kNoBlock, 1); 52 fTxSocket->SetOption(kNodelay, 1); 52 53 53 54 MTcpIpO::RunThread(); … … 185 186 fTxSocket = new TSocket(a.GetHostAddress(), fPortTx); 186 187 fTxSocket->SetOption(kNoBlock, 1); 188 fTxSocket->SetOption(kNodelay, 1); 187 189 188 190 fMutex.UnLock(); … … 265 267 fTxSocket = new TSocket(a.GetHostAddress(), fPortTx); 266 268 fTxSocket->SetOption(kNoBlock, 1); 269 fTxSocket->SetOption(kNoDelay, 1); 267 270 268 271 fMutex.UnLock(); … … 442 445 TServerSocket *server=new TServerSocket(fPortRx, kTRUE, 0); 443 446 server->SetOption(kNoBlock, 1); 447 server->SetOption(kNoDelay, 1); 444 448 445 449 while (!IsThreadCanceled() && server->IsValid())
Note:
See TracChangeset
for help on using the changeset viewer.