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.
我在 Netty(新旧 api)中有一种方法可以监听传入的 TCP 连接并在同一端口上接收 UDP 数据包吗?
我正在运行一个监听端口 80 的 netty 服务器实例。根据 TCP 或 UDP 消息,服务器需要切换到适当的处理程序。
我猜你已经设置了一个带有特定管道工厂的 ServerBootstrap。您所要做的就是使用 DatagramChannelFactory 创建一个 ConnectionlessBoostrap,使用您需要的处理程序管道对其进行设置并绑定到同一端口。
是的你可以。如果你不能,请告诉我。