add units (100ms) to comments

This commit is contained in:
FlyingWithJerome 2020-08-15 08:54:12 -04:00
parent 1d2b531062
commit 7dcf974daf
3 changed files with 2 additions and 3 deletions

View file

@ -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.

View file

@ -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;

View file

@ -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 {