Changeset 8378 for trunk/MagicSoft/Cosy/tcpip
- Timestamp:
- 03/14/07 19:19:45 (18 years ago)
- Location:
- trunk/MagicSoft/Cosy/tcpip
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Cosy/tcpip/MCeCoCom.cc
r6844 r8378 91 91 } 92 92 93 bool MCeCoCom::Send (const char *cmd, const char *str, bool force=kFALSE)93 bool MCeCoCom::SendRep(const char *cmd, const char *str, bool force) 94 94 { 95 95 MTime t; -
trunk/MagicSoft/Cosy/tcpip/MCeCoCom.h
r4865 r8378 49 49 } 50 50 51 bool Send (const char *cmd, const char *str, bool force);51 bool SendRep(const char *cmd, const char *str, bool force); 52 52 void SetStatus(Byte_t s) { fStatus=s; } 53 53 -
trunk/MagicSoft/Cosy/tcpip/MDriveCom.cc
r7788 r8378 262 262 str += txt.Print("%08.3f", er.Az()); 263 263 264 return Send ("DRIVE-REPORT", str, kFALSE);264 return SendRep("DRIVE-REPORT", str, kFALSE); 265 265 } 266 266 267 267 bool MDriveCom::SendStatus(const char *stat) 268 268 { 269 return Send ("DRIVE-STATUS", stat, kFALSE);269 return SendRep("DRIVE-STATUS", stat, kFALSE); 270 270 } 271 271 … … 302 302 str += txt.Print("%04d ", num); //number of detected stars 303 303 304 return Send ("STARG-REPORT", str, kTRUE);305 } 304 return SendRep("STARG-REPORT", str, kTRUE); 305 } -
trunk/MagicSoft/Cosy/tcpip/MTcpIpIO.cc
r7790 r8378 112 112 { 113 113 cout << "Rx: " << str << flush; 114 return true; 114 115 } 115 116
Note:
See TracChangeset
for help on using the changeset viewer.