Correcting types.

This commit is contained in:
jatkinosn 2019-06-20 09:32:37 -04:00
parent bd0bf3f84f
commit 7b42c3a201
2 changed files with 4 additions and 4 deletions

View file

@ -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.

View file

@ -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.
##