public static ServerProxy create(string host, int port, bool ssl_enable) { int type = RpcConstValue.CONNECTION_SOCK; if (ssl_enable) { type |= RpcConstValue.CONNECTION_SSL; } RpcConnection conn = RpcCommunicator.instance().createConnection(type, host, port); ServerProxy prx = new ServerProxy(conn); return(prx); }
public static ServerProxy createWithProxy(RpcProxyBase proxy) { ServerProxy prx = new ServerProxy(proxy.conn); return(prx); }