mirror of
https://github.com/zeek/zeek.git
synced 2025-10-04 07:38:19 +00:00
address code reviews (formatting and type and intrusiveptr)
This commit is contained in:
parent
ac1ea204fe
commit
c957e3e91e
7 changed files with 32 additions and 47 deletions
|
@ -3885,7 +3885,7 @@ type dns_loc_rr: record {
|
|||
};
|
||||
|
||||
type dns_svcb_rr: record {
|
||||
svc_priority: count; ##< Service priority. (AliasMode? ServiceMode?)
|
||||
svc_priority: count; ##< Service priority for the current record, 0 indicates that this record is in AliasMode and cannot carry svc_params; otherwise this is in ServiceMode, and may include svc_params
|
||||
target_name: string; ##< Target name, the hostname of the service endpoint.
|
||||
svc_params: table[count] of vector of string; ##< service parameters as key-value pairs (not used at this point)
|
||||
};
|
||||
|
|
|
@ -182,5 +182,5 @@ export {
|
|||
[4] = "ipv4hint",
|
||||
[5] = "ech",
|
||||
[6] = "ipv6hint",
|
||||
} &default = function(n: count): string { return fmt("key%d", n); };
|
||||
} &default = function(n: count): string { return fmt("key-%d", n); };
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue