- Timestamp:
- 05/10/10 11:28:24 (15 years ago)
- Location:
- trunk/MagicSoft/Cosy/tcpip
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Cosy/tcpip/MCeCoCom.h
r9439 r9582 50 50 public: 51 51 MCeCoCom(const char *addr, const int tx=7304, const int rx=7404, MLog *out=NULL) 52 : MTcpIpIO(addr, tx, rx ), fOut(out), fStatus(0),52 : MTcpIpIO(addr, tx, rx, 15000), fOut(out), fStatus(0), 53 53 fTelescope(1), fComStat(kComProblem), 54 54 fHumidity(0), fTemperature(0), fWindSpeed(0), fSolarRadiation(-1), -
trunk/MagicSoft/Cosy/tcpip/MTcpIpIO.cc
r9443 r9582 62 62 } 63 63 64 MTcpIpIO::MTcpIpIO(const char *addr, Int_t tx, Int_t rx ) : MTcpIpI(rx), MTcpIpO(addr, tx)64 MTcpIpIO::MTcpIpIO(const char *addr, Int_t tx, Int_t rx, UInt_t timeout) : MTcpIpI(rx, timeout), MTcpIpO(addr, tx) 65 65 { 66 66 MTcpIpI::RunThread(); -
trunk/MagicSoft/Cosy/tcpip/MTcpIpIO.h
r9439 r9582 72 72 73 73 public: 74 MTcpIpIO(const char *addr, Int_t tx, Int_t rx );74 MTcpIpIO(const char *addr, Int_t tx, Int_t rx, UInt_t timeout=5000); 75 75 ~MTcpIpIO(); 76 76
Note:
See TracChangeset
for help on using the changeset viewer.