mirror of
https://github.com/fergalmoran/DnsServer.git
synced 2026-02-22 15:57:10 +00:00
QueryLogsSqlite: disabled validation for qname to allow displaying invalid domain requests in logs.
This commit is contained in:
@@ -558,7 +558,7 @@ WHERE
|
||||
if (reader.IsDBNull(6))
|
||||
question = null;
|
||||
else
|
||||
question = new DnsQuestionRecord(reader.GetString(6), (DnsResourceRecordType)reader.GetInt32(7), (DnsClass)reader.GetInt32(8));
|
||||
question = new DnsQuestionRecord(reader.GetString(6), (DnsResourceRecordType)reader.GetInt32(7), (DnsClass)reader.GetInt32(8), false);
|
||||
|
||||
string answer;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user