Index: trunk/MagicSoft/Cosy/tcpip/MCeCoCom.cc
===================================================================
--- trunk/MagicSoft/Cosy/tcpip/MCeCoCom.cc	(revision 7790)
+++ trunk/MagicSoft/Cosy/tcpip/MCeCoCom.cc	(revision 8378)
@@ -91,5 +91,5 @@
 }
 
-bool MCeCoCom::Send(const char *cmd, const char *str, bool force=kFALSE)
+bool MCeCoCom::SendRep(const char *cmd, const char *str, bool force)
 {
     MTime t;
Index: trunk/MagicSoft/Cosy/tcpip/MCeCoCom.h
===================================================================
--- trunk/MagicSoft/Cosy/tcpip/MCeCoCom.h	(revision 7790)
+++ trunk/MagicSoft/Cosy/tcpip/MCeCoCom.h	(revision 8378)
@@ -49,5 +49,5 @@
     }
 
-    bool Send(const char *cmd, const char *str, bool force);
+    bool SendRep(const char *cmd, const char *str, bool force);
     void SetStatus(Byte_t s) { fStatus=s; }
 
Index: trunk/MagicSoft/Cosy/tcpip/MDriveCom.cc
===================================================================
--- trunk/MagicSoft/Cosy/tcpip/MDriveCom.cc	(revision 7790)
+++ trunk/MagicSoft/Cosy/tcpip/MDriveCom.cc	(revision 8378)
@@ -262,10 +262,10 @@
     str += txt.Print("%08.3f", er.Az());
 
-    return Send("DRIVE-REPORT", str, kFALSE);
+    return SendRep("DRIVE-REPORT", str, kFALSE);
 }
 
 bool MDriveCom::SendStatus(const char *stat)
 {
-    return Send("DRIVE-STATUS", stat, kFALSE);
+    return SendRep("DRIVE-STATUS", stat, kFALSE);
 }
 
@@ -302,4 +302,4 @@
     str += txt.Print("%04d ", num);               //number of detected stars
 
-    return Send("STARG-REPORT", str, kTRUE);
-}
+    return SendRep("STARG-REPORT", str, kTRUE);
+}
Index: trunk/MagicSoft/Cosy/tcpip/MTcpIpIO.cc
===================================================================
--- trunk/MagicSoft/Cosy/tcpip/MTcpIpIO.cc	(revision 7790)
+++ trunk/MagicSoft/Cosy/tcpip/MTcpIpIO.cc	(revision 8378)
@@ -112,4 +112,5 @@
 {
     cout << "Rx: " << str << flush;
+    return true;
 }
 
