Skip to content

Commit

Permalink
fix: remove internal PTR map from structured output
Browse files Browse the repository at this point in the history
  • Loading branch information
natesales committed Dec 13, 2023
1 parent c2884c1 commit b25213c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions output/output.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down

0 comments on commit b25213c

Please sign in to comment.