From 7b42c3a201b2695d4cf997e69aa5564f9c516fc8 Mon Sep 17 00:00:00 2001 From: jatkinosn Date: Thu, 20 Jun 2019 09:32:37 -0400 Subject: [PATCH] Correcting types. --- scripts/base/init-bare.zeek | 6 +++--- src/analyzer/protocol/rdp/events.bif | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/base/init-bare.zeek b/scripts/base/init-bare.zeek index 6ed290fb2c..f40b1a6fbe 100644 --- a/scripts/base/init-bare.zeek +++ b/scripts/base/init-bare.zeek @@ -4280,7 +4280,7 @@ export { ## A unique name for the channel name: string; ## Channel Def raw options as count - options: int; + options: count; ## Absence of this flag indicates that this channel is ## a placeholder and that the server MUST NOT set it up. initialized: bool; @@ -4307,8 +4307,8 @@ export { }; type RDP::ClientClusterData: record { - flags: int; - redir_session_id: int; + flags: count; + redir_session_id: count; }; ## The list of channels requested by the client. diff --git a/src/analyzer/protocol/rdp/events.bif b/src/analyzer/protocol/rdp/events.bif index 91d2fc004a..178860bd42 100644 --- a/src/analyzer/protocol/rdp/events.bif +++ b/src/analyzer/protocol/rdp/events.bif @@ -49,7 +49,7 @@ event rdp_client_security_data%(c: connection, data: RDP::ClientSecurityData%); ## channels: The channels that were requested event rdp_client_network_data%(c: connection, channels: RDP::ClientChannelList%); -## Generated for client clusgter data packets. +## Generated for client cluster data packets. ## ## c: The connection record for the underlying transport-layer session/flow. ##