Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前正在尝试在服务器和 GPS 跟踪器 (GT02 - GT06) 之间实现一个简单的通信模块。使用 JBoss Netty ,但由于某些原因,我无法与跟踪器保持连接打开时间过长。在发送第一个数据流几秒钟后,它似乎下降了。
还有谁知道我如何管理 GT06 设备?它每次连接时都会不断发送不同的会话密钥,因此很难与 IMEI 关联。
谢谢你的帮助 !它快把我逼疯了。
您可以尝试在 netty 中启用 tcp keep alives。见[1]。
[1] http://netty.io/docs/stable/api/org/jboss/netty/channel/socket/SocketChannelConfig.html#setKeepAlive(boolean )