Skip to content
Open
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
7 changes: 5 additions & 2 deletions src/chinadns.c
Original file line number Diff line number Diff line change
Expand Up @@ -806,8 +806,11 @@ static int should_filter_query(ns_msg msg, struct in_addr dns_addr) {
return 1;
}
}
} else if (type == ns_t_aaaa || type == ns_t_ptr) {
// if we've got an IPv6 result or a PTR result, pass
} else if (type == ns_t_aaaa) {
if (dns_is_chn) {
return 1;
}
} else if (type == ns_t_ptr) {
return 0;
}
}
Expand Down