You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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
andIsReply
, which could be merged into the Flags field, or a new fieldThe text was updated successfully, but these errors were encountered: