示例#1
0
文件: test.cs 项目: demonxjj/TCE
        public static BaseServerProxy 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);
            BaseServerProxy prx  = new BaseServerProxy(conn);

            return(prx);
        }
示例#2
0
文件: test.cs 项目: demonxjj/TCE
        public static BaseServerProxy createWithProxy(RpcProxyBase proxy)
        {
            BaseServerProxy prx = new BaseServerProxy(proxy.conn);

            return(prx);
        }