This commit is contained in:
eson 2022-06-08 18:08:33 +08:00
parent bbf4a47ed3
commit bde4b7985d
2 changed files with 13 additions and 3 deletions

View File

@ -47,5 +47,18 @@ public class Header {
log.error("{}", pheader);
log.error("{}",PacketBase.createPacketBase(pheader));
//60010流需要解压
byte[] unzipbodydata = null;
if (pheader.getTableID() == 20) {
pheader.parseNextHeader_60010(in);
byte[] zipbodydata = new byte[packetHeader.getMsg_len()];
readTillLength(zipbodydata, packetHeader.getMsg_len());
unzipbodydata = ZlibUtil.Inflate(zipbodydata);
}
}
}

View File

@ -29,9 +29,6 @@ public class BacktrackingFlow extends PacketBase{
private long appGroupId;// 4 app组ID
private long mplsLabel;// 4
@Override
public PacketBase Parse(PacketHeader header,ByteBuffer data) throws Exception {