Ejemplo n.º 1
0
 public URCConnection CreateConnection(TcpClient client, URCLookup lookup)
 {
     return new URCConnection(client, lookup);
 }
Ejemplo n.º 2
0
 public URCConnection(TcpClient client, URCLookup lookup)
 {
     this.client = client;
     this.lookup = lookup;
 }
Ejemplo n.º 3
0
 public URCMasterServer(TcpListener conn, URCLookup lookup)
 {
     this.conn = conn;
     this.lookup = lookup;
 }