Index: trunk/MagicSoft/Cosy/tcpip/MCeCoCom.h
===================================================================
--- trunk/MagicSoft/Cosy/tcpip/MCeCoCom.h	(revision 8847)
+++ trunk/MagicSoft/Cosy/tcpip/MCeCoCom.h	(revision 8856)
@@ -49,5 +49,5 @@
 public:
     MCeCoCom(MLog *out)
-        : MTcpIpIO(7304, 7404), fOut(out), fStatus(0), fComStat(kNoCmdReceived),
+        : MTcpIpIO("ceco", 7304, 7404), fOut(out), fStatus(0), fComStat(kNoCmdReceived),
         fHumidity(0), fTemperature(0), fWindSpeed(0), fSolarRadiation(-1),
         fAlarmCounter(0)
Index: trunk/MagicSoft/Cosy/tcpip/MTcpIpIO.cc
===================================================================
--- trunk/MagicSoft/Cosy/tcpip/MTcpIpIO.cc	(revision 8847)
+++ trunk/MagicSoft/Cosy/tcpip/MTcpIpIO.cc	(revision 8856)
@@ -35,7 +35,7 @@
      */
 
-MTcpIpO::MTcpIpO(Int_t tx)
-{
-    fTxSocket = new TSocket("ceco", tx);
+MTcpIpO::MTcpIpO(const char *addr, Int_t tx)
+{
+    fTxSocket = new TSocket(addr, tx);
 }
 
@@ -46,5 +46,5 @@
 }
 
-MTcpIpIO::MTcpIpIO(Int_t tx, Int_t rx) : MTcpIpI(rx), MTcpIpO(tx)
+MTcpIpIO::MTcpIpIO(const char *addr, Int_t tx, Int_t rx) : MTcpIpI(rx), MTcpIpO(addr, tx)
 {
     RunThread();
Index: trunk/MagicSoft/Cosy/tcpip/MTcpIpIO.h
===================================================================
--- trunk/MagicSoft/Cosy/tcpip/MTcpIpIO.h	(revision 8847)
+++ trunk/MagicSoft/Cosy/tcpip/MTcpIpIO.h	(revision 8856)
@@ -37,5 +37,5 @@
 
 public:
-    MTcpIpO(Int_t tx);
+    MTcpIpO(const char *addr, Int_t tx);
     ~MTcpIpO();
 
@@ -53,5 +53,5 @@
 
 public:
-    MTcpIpIO(Int_t tx, Int_t rx);
+    MTcpIpIO(const char *addr, Int_t tx, Int_t rx);
     ~MTcpIpIO();
 
