public URCConnection CreateConnection(TcpClient client, URCLookup lookup) { return new URCConnection(client, lookup); }
public URCConnection(TcpClient client, URCLookup lookup) { this.client = client; this.lookup = lookup; }
public URCMasterServer(TcpListener conn, URCLookup lookup) { this.conn = conn; this.lookup = lookup; }