* 'patch-3' of https://github.com/balintm/bro:
  Update krb-protocol.pac
  padding comes before flags
This commit is contained in:
Johanna Amann 2017-07-07 12:20:19 -07:00
commit 45f46e0e83

View file

@ -136,8 +136,8 @@ type KRB_AP_REQ(is_orig: bool) = record {
type KRB_AP_Options = record { type KRB_AP_Options = record {
meta : SequenceElement(false); meta : SequenceElement(false);
flags : uint32;
: padding[1]; : padding[1];
flags : uint32;
} &let { } &let {
reserved : bool = (flags & 0x80000000) > 0; reserved : bool = (flags & 0x80000000) > 0;
use_session_key : bool = (flags & 0x40000000) > 0; use_session_key : bool = (flags & 0x40000000) > 0;