From 49e1ea1bc7f47fe56f4c56fbd2d796e8c85ef72f Mon Sep 17 00:00:00 2001 From: Christiano Haesbaert Date: Tue, 17 Sep 2024 20:55:43 +0200 Subject: [PATCH] tiny rewording --- GPL/Events/EbpfEventProto.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/GPL/Events/EbpfEventProto.h b/GPL/Events/EbpfEventProto.h index 1ee8235f..0277d72f 100644 --- a/GPL/Events/EbpfEventProto.h +++ b/GPL/Events/EbpfEventProto.h @@ -404,10 +404,9 @@ struct ebpf_dns_event { // Basic event statistics struct ebpf_event_stats { - uint64_t lost; // lost events due to a full ringbuffer - uint64_t sent; // events sent through the ringbuffer - // indicates that an sk_buff for a DNS event contained no non-paged data in sk_buff->data - uint64_t dns_zero_body; + uint64_t lost; // lost events due to a full ringbuffer + uint64_t sent; // events sent through the ringbuffer + uint64_t dns_zero_body; // indicates that the dns body of a sk_buff was unavailable }; #endif // EBPF_EVENTPROBE_EBPFEVENTPROTO_H