some handlers, dh pubkey negative problem still not solved...

This commit is contained in:
raphaeIl
2025-01-13 09:11:16 -05:00
parent aae2dc6b55
commit ab8953908e
13 changed files with 19796 additions and 4447 deletions

View File

@@ -81,7 +81,8 @@ namespace Novaria.PcapParser
Method = packet.type,
Packet = Convert.ChangeType(decodedPayload, requestType),
MsgId = msgid,
ClassType = NetMsgIdToNameMappings[(short)msgid]
ClassType = NetMsgIdToNameMappings[(short)msgid],
MsgIdName = Enum.GetName(typeof(NetMsgId), msgid)
});
}
}
@@ -682,6 +683,7 @@ namespace Novaria.PcapParser
public object Packet { get; set; }
public string ClassType { get; set; }
public NetMsgId MsgId { get; set; }
public string MsgIdName { get; set; }
}
}