Adding record to init-bare

This commit is contained in:
jatkinosn 2019-06-06 10:06:58 -04:00
parent b6746bc9e0
commit 17512bb8db
2 changed files with 7 additions and 2 deletions

View file

@ -4276,6 +4276,11 @@ export {
dig_product_id: string &optional; dig_product_id: string &optional;
}; };
type RDP::ClientSecurityData: record {
encryption_methods: count;
ext_encryption_methods: count;
};
## Name and flags for a single channel requested by the client. ## Name and flags for a single channel requested by the client.
type RDP::ClientChannelDef: record { type RDP::ClientChannelDef: record {
## A unique name for the channel ## A unique name for the channel

View file

@ -221,8 +221,8 @@ type Client_Core_Data = record {
} &byteorder=littleendian; } &byteorder=littleendian;
type Client_Security_Data = record { type Client_Security_Data = record {
encryption_methods: uint16; encryption_methods: uint32;
ext_encryption_methods: uint16; ext_encryption_methods: uint32;
} &byteorder=littleendian; } &byteorder=littleendian;
type Client_Network_Data = record { type Client_Network_Data = record {