mirror of
https://github.com/zeek/zeek.git
synced 2025-10-13 20:18:20 +00:00
padding comes before flags
I am not able to find it in RFC, but all of the pcaps I came across (https://wiki.wireshark.org/SampleCaptures) contain padding in-front of flags.
This commit is contained in:
parent
b527a9870d
commit
a51047ec6d
1 changed files with 1 additions and 1 deletions
|
@ -136,8 +136,8 @@ type KRB_AP_REQ(is_orig: bool) = record {
|
|||
|
||||
type KRB_AP_Options = record {
|
||||
meta : SequenceElement(false);
|
||||
: padding[meta.meta.length - 4];
|
||||
flags : uint32;
|
||||
: padding[1];
|
||||
} &let {
|
||||
reserved : bool = (flags & 0x80000000) > 0;
|
||||
use_session_key : bool = (flags & 0x40000000) > 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue