-
-
Notifications
You must be signed in to change notification settings - Fork 201
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add full DNSSEC support #186
Conversation
Signed-off-by: DL6ER <[email protected]>
Signed-off-by: DL6ER <[email protected]>
Signed-off-by: DL6ER <[email protected]>
parser.c
Outdated
@@ -484,6 +484,8 @@ void process_pihole_log(int file) | |||
// Store domain name | |||
domains[domainID].domain = strdup(domain); | |||
memory.domainnames += (strlen(domain) + 1) * sizeof(char); | |||
// Store DNSSEC result for this domain | |||
domains[domainID].dnssec = 0; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Using an enum might be more readable.
Signed-off-by: DL6ER <[email protected]>
Signed-off-by: DL6ER <[email protected]>
This pull request has been mentioned on Pi-hole Userspace. There might be relevant details there: https://discourse.pi-hole.net/t/add-full-support-for-dnssec-in-query-log/6284/3 |
This pull request has been mentioned on Pi-hole Userspace. There might be relevant details there: https://discourse.pi-hole.net/t/add-full-support-for-dnssec-in-query-log/6284/1 |
By submitting this pull request, I confirm the following (please check boxes, eg [X]) Failure to fill the template will close your PR:
Please submit all pull requests against the
development
branch. Failure to do so will delay or deny your requestHow familiar are you with the codebase?:
10
Add DNSSEC support. Analyze
SECURE
,INSECURE
as well asBOGUS
result and return it on request.Exemplary screenshot:
![screenshot at 2017-12-31 16-55-59](https://user-images.githubusercontent.com/16748619/34462802-dba4cc9e-ee4b-11e7-9a15-39b56508ec09.png)
This template was created based on the work of
udemy-dl
.