From b25213c3d7c9a27174a00a82bfe7c4f394872052 Mon Sep 17 00:00:00 2001 From: Nate Sales Date: Wed, 13 Dec 2023 01:30:47 -0500 Subject: [PATCH] fix: remove internal PTR map from structured output --- output/output.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/output/output.go b/output/output.go index ae6c3ab..b704919 100644 --- a/output/output.go +++ b/output/output.go @@ -31,9 +31,9 @@ type Entry struct { Time time.Duration // Txp is the transport used to resolve IP addresses in A/AAAA records to their PTR records - Txp *transport.Transport + Txp *transport.Transport `json:"-"` - PTRs map[string]string // IP -> PTR value + PTRs map[string]string `json:"-"` // IP -> PTR value existingRRs map[string]bool }