Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions asn-db.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,6 @@ func (m *ASNDB) Match(ip net.IP) (*BlocklistMatch, bool) {
return nil, false
}

fmt.Println(record)

// Check if the ASN is on the blocklist
if _, ok := m.db[record.ASN]; ok {
return &BlocklistMatch{
Expand Down
3 changes: 0 additions & 3 deletions fastest-tcp.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ package rdns
import (
"context"
"errors"
"fmt"
"log/slog"
"net"
"strconv"
Expand Down Expand Up @@ -70,8 +69,6 @@ func (r *FastestTCP) Resolve(q *dns.Msg, ci ClientInfo) (*dns.Msg, error) {
if question.Qtype != dns.TypeA && question.Qtype != dns.TypeAAAA {
return a, nil
}
fmt.Println("Responses")
fmt.Println(a)

// Extract the IP responses
var ipRRs []dns.RR
Expand Down
Loading