mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
Merge remote-tracking branch 'origin/topic/vern/zval'
* origin/topic/vern/zval: (42 commits) whitespace tweaks resolved some TODO comments remove unnecessary casts, and change necessary ones to use static_cast<> explain cmp_func default change functions for ZVal type management to static members fix some unsigned/signed integer warnings address lint concern about uninitialized variable Remove use of obsolete forward-declaration macros fix #include's that lack zeek/ prefixes explicitly populate holes created in vectors fixes for now-incorrect assumption that GetField always returns an existing ValPtr memory management for assignment to vector elements memory management for assignment to record fields destructor cleanup from ZAM_vector/ZAM_record fix #include's that lack zeek/ prefixes overlooked another way in which vector holes can be created initialize vector holes to the correct corresponding type explicitly populate holes created in vectors fix other instances of GetField().get() assuming long-lived ValPtr's fix for now-incorrect assumption that GetField always returns an existing ValPtr ...
This commit is contained in:
commit
f45df63cd0
100 changed files with 2376 additions and 1386 deletions
|
@ -3334,7 +3334,7 @@ export {
|
|||
## The security mode field specifies whether SMB signing is enabled, required at the server, or both.
|
||||
security_mode : count;
|
||||
## A globally unique identifier that is generate by the server to uniquely identify the server.
|
||||
server_guid : string;
|
||||
server_guid : SMB2::GUID;
|
||||
## The system time of the SMB2 server when the SMB2 NEGOTIATE Request was processed.
|
||||
system_time : time;
|
||||
## The SMB2 server start time.
|
||||
|
@ -3710,7 +3710,7 @@ type dns_edns_ecs: record {
|
|||
family: string; ##< IP Family
|
||||
source_prefix_len: count; ##< Source Prefix Length.
|
||||
scope_prefix_len: count; ##< Scope Prefix Length.
|
||||
address: string; ##< Client Subnet Address.
|
||||
address: addr; ##< Client Subnet Address.
|
||||
};
|
||||
|
||||
## An DNS EDNS TCP KEEPALIVE (TCP KEEPALIVE) record.
|
||||
|
@ -4354,7 +4354,7 @@ export {
|
|||
keyboard_function_key: count;
|
||||
ime_file_name: string;
|
||||
post_beta2_color_depth: count &optional;
|
||||
client_product_id: string &optional;
|
||||
client_product_id: count &optional;
|
||||
serial_number: count &optional;
|
||||
high_color_depth: count &optional;
|
||||
supported_color_depths: count &optional;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue