Netty Framework如何获取客户端本地IP?
How to get the local IP of the client in Netty Framework?
我想从客户端获取 remoteAddress。我已经可以使用以下方法成功连接到服务器:
b.connect(this.hostAddress.getHostAddress(), this.port).sync(); // b is a Bootstrap object
为了简单起见,我使用 SimpleChannelInboundHandler
。
在处理程序中你会做 ctx.channel().remoteAddress()
。使用连接时,您可以使用 f.channel().remoteAddress()
我想从客户端获取 remoteAddress。我已经可以使用以下方法成功连接到服务器:
b.connect(this.hostAddress.getHostAddress(), this.port).sync(); // b is a Bootstrap object
为了简单起见,我使用 SimpleChannelInboundHandler
。
在处理程序中你会做 ctx.channel().remoteAddress()
。使用连接时,您可以使用 f.channel().remoteAddress()