mirror of
https://github.com/zeek/zeek.git
synced 2025-10-14 12:38:20 +00:00
Fixing types.
Added handling for fields sub fields. Added test script and output.
This commit is contained in:
parent
7b42c3a201
commit
3a19af86c5
5 changed files with 52 additions and 4 deletions
|
@ -235,8 +235,8 @@ type Client_Cluster_Data = record {
|
|||
redir_session_id: uint32;
|
||||
} &let {
|
||||
REDIRECTION_SUPPORTED: bool = redir_session_id & 0x00000001;
|
||||
SERVER_SESSION_REDIRECTION_VERSION_MASK: int = (redir_session_id & 0x0000003C);
|
||||
REDIRECTED_SESSIONID_FIELD_VALID: int = (redir_session_id & 0x00000002);
|
||||
SERVER_SESSION_REDIRECTION_VERSION_MASK: uint8 = (redir_session_id & 0x0000003C);
|
||||
REDIRECTED_SESSIONID_FIELD_VALID: uint8 = (redir_session_id & 0x00000002);
|
||||
REDIRECTED_SMARTCARD: bool = redir_session_id & 0x00000040;
|
||||
} &byteorder=littleendian;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue