Changeset 8856 for trunk/MagicSoft/Cosy/tcpip
- Timestamp:
- 02/05/08 11:41:55 (17 years ago)
- Location:
- trunk/MagicSoft/Cosy/tcpip
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Cosy/tcpip/MCeCoCom.h
r8840 r8856 49 49 public: 50 50 MCeCoCom(MLog *out) 51 : MTcpIpIO( 7304, 7404), fOut(out), fStatus(0), fComStat(kNoCmdReceived),51 : MTcpIpIO("ceco", 7304, 7404), fOut(out), fStatus(0), fComStat(kNoCmdReceived), 52 52 fHumidity(0), fTemperature(0), fWindSpeed(0), fSolarRadiation(-1), 53 53 fAlarmCounter(0) -
trunk/MagicSoft/Cosy/tcpip/MTcpIpIO.cc
r8843 r8856 35 35 */ 36 36 37 MTcpIpO::MTcpIpO( Int_t tx)38 { 39 fTxSocket = new TSocket( "ceco", tx);37 MTcpIpO::MTcpIpO(const char *addr, Int_t tx) 38 { 39 fTxSocket = new TSocket(addr, tx); 40 40 } 41 41 … … 46 46 } 47 47 48 MTcpIpIO::MTcpIpIO( Int_t tx, Int_t rx) : MTcpIpI(rx), MTcpIpO(tx)48 MTcpIpIO::MTcpIpIO(const char *addr, Int_t tx, Int_t rx) : MTcpIpI(rx), MTcpIpO(addr, tx) 49 49 { 50 50 RunThread(); -
trunk/MagicSoft/Cosy/tcpip/MTcpIpIO.h
r8843 r8856 37 37 38 38 public: 39 MTcpIpO( Int_t tx);39 MTcpIpO(const char *addr, Int_t tx); 40 40 ~MTcpIpO(); 41 41 … … 53 53 54 54 public: 55 MTcpIpIO( Int_t tx, Int_t rx);55 MTcpIpIO(const char *addr, Int_t tx, Int_t rx); 56 56 ~MTcpIpIO(); 57 57
Note:
See TracChangeset
for help on using the changeset viewer.