|
|
|
@ -102,13 +102,8 @@ public class ProxyClientContainer implements Container, ChannelStatusListener { |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private void connectProxyServer() { |
|
|
|
|
|
|
|
|
|
bootstrap.connect(config.getStringValue("server.host"), config.getIntValue("server.port")).addListener(new ChannelFutureListener() { |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public void operationComplete(ChannelFuture future) throws Exception { |
|
|
|
|
bootstrap.connect(config.getStringValue("server.host"), config.getIntValue("server.port")).addListener((ChannelFuture future)->{ |
|
|
|
|
if (future.isSuccess()){ |
|
|
|
|
|
|
|
|
|
// 连接成功,向服务器发送客户端认证信息(clientKey)
|
|
|
|
|
ClientChannelMannager.setCmdChannel(future.channel()); |
|
|
|
|
ProxyMessage proxyMessage = new ProxyMessage(); |
|
|
|
@ -124,7 +119,6 @@ public class ProxyClientContainer implements Container, ChannelStatusListener { |
|
|
|
|
reconnectWait(); |
|
|
|
|
connectProxyServer(); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|