Issue
Extra padding is present in packetparserPacket struct. This should be optimized.
Goal
Look into a way to re-arrange the struct so that we can minimize the paddings.
Suggested Solution
Remove struct fields as some fields could be combined - for example TrafficDirection, Proto and IsReply, which could be merged into the Flags field, or a new field
Issue
Extra padding is present in
packetparserPacketstruct. This should be optimized.Goal
Look into a way to re-arrange the struct so that we can minimize the paddings.
Suggested Solution
Remove struct fields as some fields could be combined - for example
TrafficDirection,ProtoandIsReply, which could be merged into the Flags field, or a new field