mirror of
https://github.com/EQEmu/Server.git
synced 2026-03-06 14:32:24 +00:00
Fix for broken AppCombined; both logic error and bad enum doh
This commit is contained in:
parent
dc1509e768
commit
d3cd037fa7
@ -261,6 +261,7 @@ namespace StreamParser.Common.Daybreak
|
|||||||
|
|
||||||
var subpacket = data.Slice(current, subpacket_length);
|
var subpacket = data.Slice(current, subpacket_length);
|
||||||
ProcessDecodedPacket(srcAddr, srcPort, packetTime, subpacket);
|
ProcessDecodedPacket(srcAddr, srcPort, packetTime, subpacket);
|
||||||
|
current += subpacket_length;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|||||||
@ -32,7 +32,7 @@ namespace StreamParser.Common.Daybreak
|
|||||||
public const byte Ack2 = 22;
|
public const byte Ack2 = 22;
|
||||||
public const byte Ack3 = 23;
|
public const byte Ack3 = 23;
|
||||||
public const byte Ack4 = 22;
|
public const byte Ack4 = 22;
|
||||||
public const byte AppCombined = 23;
|
public const byte AppCombined = 25;
|
||||||
public const byte OutboundPing = 28;
|
public const byte OutboundPing = 28;
|
||||||
public const byte OutOfSession = 29;
|
public const byte OutOfSession = 29;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -2,8 +2,8 @@
|
|||||||
"profiles": {
|
"profiles": {
|
||||||
"stream_parser": {
|
"stream_parser": {
|
||||||
"commandName": "Project",
|
"commandName": "Project",
|
||||||
"commandLineArgs": "--input input/test.pcap --csv --text --decrypt",
|
"commandLineArgs": "--input input/cap_login_to_zone_10_16_2024.pcap --output output_test/ --text --decrypt",
|
||||||
"workingDirectory": "E:\\Projects\\stream_parser\\stream_parser\\bin\\Debug\\net5.0"
|
"workingDirectory": "E:\\Projects\\stream_parser\\stream_parser\\bin\\Debug\\net6.0\\"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user