Ignore:
Timestamp:
02/05/08 11:41:55 (17 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Cosy/tcpip/MTcpIpIO.cc

    r8843 r8856  
    3535     */
    3636
    37 MTcpIpO::MTcpIpO(Int_t tx)
    38 {
    39     fTxSocket = new TSocket("ceco", tx);
     37MTcpIpO::MTcpIpO(const char *addr, Int_t tx)
     38{
     39    fTxSocket = new TSocket(addr, tx);
    4040}
    4141
     
    4646}
    4747
    48 MTcpIpIO::MTcpIpIO(Int_t tx, Int_t rx) : MTcpIpI(rx), MTcpIpO(tx)
     48MTcpIpIO::MTcpIpIO(const char *addr, Int_t tx, Int_t rx) : MTcpIpI(rx), MTcpIpO(addr, tx)
    4949{
    5050    RunThread();
Note: See TracChangeset for help on using the changeset viewer.