今天才出现的情况,之前都没有出现过。。。
操作系统是 win10,用 android 作为连接前端,真机和虚拟机都有。
我猜测这是 win10 或者 android 上的哪个地方限制了,求大佬支招。。。。
netty 服务端的代码非常简单,虽然我认为肯定不是这里的问题,但是我也放出来了:
@
PostConstruct public void startServer() {
for(int i = 1; i <= 300; i++) playerMap.put(i, new Player());
for(int j = 1; j <= 100; j++) tableMap.put(j, new Table());
ServerBootstrap b = new ServerBootstrap();
b.group(boss, work)
.channel(NioServerSocketChannel.class)
.option(ChannelOption.SO_BACKLOG, 128)
.option(ChannelOption.CONNECT_TIMEOUT_MILLIS, 10 * 1000)
.childOption(ChannelOption.TCP_NODELAY, true)
.childHandler(this)
.bind(6789)
.addListener(new ChannelFutureListener() {
@
Override public void operationComplete(ChannelFuture future) throws Exception {
future.removeListener(this);
if(!future.isSuccess() && future.cause() != null) log.error("服务器绑定端口失败", future.cause());
if(future.isSuccess())
log.info("服务器绑定端口成功");
}
});
}
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
https://www.v2ex.com/t/595929
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.