Index: trunk/MagicSoft/Cosy/tcpip/MCeCoCom.h
===================================================================
--- trunk/MagicSoft/Cosy/tcpip/MCeCoCom.h	(revision 9577)
+++ trunk/MagicSoft/Cosy/tcpip/MCeCoCom.h	(revision 9582)
@@ -50,5 +50,5 @@
 public:
     MCeCoCom(const char *addr, const int tx=7304, const int rx=7404, MLog *out=NULL)
-        : MTcpIpIO(addr, tx, rx), fOut(out), fStatus(0),
+        : MTcpIpIO(addr, tx, rx, 15000), fOut(out), fStatus(0),
         fTelescope(1), fComStat(kComProblem),
         fHumidity(0), fTemperature(0), fWindSpeed(0), fSolarRadiation(-1),
Index: trunk/MagicSoft/Cosy/tcpip/MTcpIpIO.cc
===================================================================
--- trunk/MagicSoft/Cosy/tcpip/MTcpIpIO.cc	(revision 9577)
+++ trunk/MagicSoft/Cosy/tcpip/MTcpIpIO.cc	(revision 9582)
@@ -62,5 +62,5 @@
 }
 
-MTcpIpIO::MTcpIpIO(const char *addr, Int_t tx, Int_t rx) : MTcpIpI(rx), MTcpIpO(addr, tx)
+MTcpIpIO::MTcpIpIO(const char *addr, Int_t tx, Int_t rx, UInt_t timeout) : MTcpIpI(rx, timeout), MTcpIpO(addr, tx)
 {
     MTcpIpI::RunThread();
Index: trunk/MagicSoft/Cosy/tcpip/MTcpIpIO.h
===================================================================
--- trunk/MagicSoft/Cosy/tcpip/MTcpIpIO.h	(revision 9577)
+++ trunk/MagicSoft/Cosy/tcpip/MTcpIpIO.h	(revision 9582)
@@ -72,5 +72,5 @@
 
 public:
-    MTcpIpIO(const char *addr, Int_t tx, Int_t rx);
+    MTcpIpIO(const char *addr, Int_t tx, Int_t rx, UInt_t timeout=5000);
     ~MTcpIpIO();
 
