mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
Correcting types.
This commit is contained in:
parent
bd0bf3f84f
commit
7b42c3a201
2 changed files with 4 additions and 4 deletions
|
@ -4280,7 +4280,7 @@ export {
|
||||||
## A unique name for the channel
|
## A unique name for the channel
|
||||||
name: string;
|
name: string;
|
||||||
## Channel Def raw options as count
|
## Channel Def raw options as count
|
||||||
options: int;
|
options: count;
|
||||||
## Absence of this flag indicates that this channel is
|
## Absence of this flag indicates that this channel is
|
||||||
## a placeholder and that the server MUST NOT set it up.
|
## a placeholder and that the server MUST NOT set it up.
|
||||||
initialized: bool;
|
initialized: bool;
|
||||||
|
@ -4307,8 +4307,8 @@ export {
|
||||||
};
|
};
|
||||||
|
|
||||||
type RDP::ClientClusterData: record {
|
type RDP::ClientClusterData: record {
|
||||||
flags: int;
|
flags: count;
|
||||||
redir_session_id: int;
|
redir_session_id: count;
|
||||||
};
|
};
|
||||||
|
|
||||||
## The list of channels requested by the client.
|
## The list of channels requested by the client.
|
||||||
|
|
|
@ -49,7 +49,7 @@ event rdp_client_security_data%(c: connection, data: RDP::ClientSecurityData%);
|
||||||
## channels: The channels that were requested
|
## channels: The channels that were requested
|
||||||
event rdp_client_network_data%(c: connection, channels: RDP::ClientChannelList%);
|
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.
|
## c: The connection record for the underlying transport-layer session/flow.
|
||||||
##
|
##
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue