コード例 #1
0
ファイル: IceChannel.cs プロジェクト: retahc/old-code
 public IceChannel(int port)
 {
     Ice.TcpEndpoint te = new Ice.TcpEndpoint("localhost", port);
     te.Incoming = true;
     _svrChannel = new IceServerChannel(te);
     _cltChannel = new IceClientChannel();
 }
コード例 #2
0
ファイル: IceChannel.cs プロジェクト: emtees/old-code
 public IceChannel(int port) {
   Ice.TcpEndpoint te = new Ice.TcpEndpoint ("localhost", port);
   te.Incoming = true;
   _svrChannel = new IceServerChannel (te);
   _cltChannel = new IceClientChannel ();
 }