我正在控制器端的 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);
}
}
有什么帮助吗??