mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
add units (100ms) to comments
This commit is contained in:
parent
1d2b531062
commit
7dcf974daf
3 changed files with 2 additions and 3 deletions
|
@ -3705,7 +3705,7 @@ type dns_edns_ecs: record {
|
|||
## .. zeek:see:: dns_EDNS_tcp_keepalive
|
||||
type dns_edns_tcp_keepalive: record {
|
||||
keepalive_timeout_omitted: bool; ##< Whether timeout value is omitted
|
||||
keepalive_timeout: count; ##< Timeout value
|
||||
keepalive_timeout: count; ##< Timeout value, in 100ms
|
||||
};
|
||||
|
||||
## An additional DNS TSIG record.
|
||||
|
|
|
@ -253,7 +253,6 @@ bool DNS_Interpreter::ParseAnswer(DNS_MsgInfo* msg,
|
|||
bool status;
|
||||
switch ( msg->atype ) {
|
||||
case TYPE_A:
|
||||
// analyzer->Weird("parsing_A_record");
|
||||
status = ParseRR_A(msg, data, len, rdlength);
|
||||
break;
|
||||
|
||||
|
|
|
@ -158,7 +158,7 @@ struct EDNS_ECS {
|
|||
|
||||
struct EDNS_TCP_KEEPALIVE {
|
||||
bool keepalive_timeout_omitted; // whether the keepalive timeout is omitted
|
||||
uint16_t keepalive_timeout; // the timeout value sent by the client/server
|
||||
uint16_t keepalive_timeout; // the timeout value (in 100ms) sent by the client/server
|
||||
};
|
||||
|
||||
struct TSIG_DATA {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue