1

我正在控制器端的 MEGACO 协议上开发应用程序。我通过 UDP prptocol 向媒体网关发送 MEGACO 消息。媒体网关正在响应请求。当我使用指定的端口和 IP 过滤器运行 wireshark 时,wireshark 会显示所有捕获的 MEGACO 数据包。但是在我的应用程序(用 JAVA 编写)中,一些数据包没有到达。更具体地说,对我的应用程序只有事务回复和事务回复确认(参考:RFC 3015)消息没有到达。

我尝试了很多排列和组合。即使我已经为每个接收消息分配了新的数据报包和缓冲区空间作为测试。但没有结果。我的 udp 接收器代码如下。

while (running) {
        //do work here
        try {
            byte[] dpBuffer = new byte[MAX_BUFFER_SIZE];
            DatagramPacket dp = new DatagramPacket(dpBuffer, MAX_BUFFER_SIZE);
            this.socket.receive(dp);
            byte[] temp = new byte[dp.getLength()];
            System.arraycopy(dp.getData(), 0, temp, 0, dp.getLength());
            System.out.println("Read data");
            for(int i=0;i<temp.length;i++)
            {
                System.out.print((char)(temp[i]));
            }
            ByteArrayUtil msg = new ByteArrayUtil(temp, dp.getLength());
            msgParser.parseMsg(msg);
        } catch (Exception e) {
            logger.error("Megaco Reader Failed to read Packet due to :" ,e);
        }
    }

有什么帮助吗??

4

1 回答 1

1

感谢 E_net4。

正如我在评论中提到的,我在wireshark 中使用了错误的过滤器。在wireshark中,如果你只使用

"udp.port == x" 

作为过滤器,它将过滤那些具有源端口或目标端口 x 的数据包。要过滤具有源端口 == x 或目标端口 ==x 的数据包,您应该分别使用 udp.srcport == x 和 udp.destport==x。感谢大家。

于 2012-09-27T15:17:57.490 回答