-
Notifications
You must be signed in to change notification settings - Fork 1.7k
dns: add missing dns keywords to schema.json v3 #10429
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -999,6 +999,10 @@ | |
| "description": "DNS opcode as an integer", | ||
| "type": "integer" | ||
| }, | ||
| "tc": { | ||
| "description": "A 1-bit subfield that specifies if the length of the message exceeds the allowed length", | ||
| "type": "boolean" | ||
| }, | ||
| "answers": { | ||
| "type": "array", | ||
| "minItems": 1, | ||
|
|
@@ -1034,6 +1038,22 @@ | |
| } | ||
| }, | ||
| "additionalProperties": false | ||
| }, | ||
| "sshfp": { | ||
| "type": "object", | ||
| "description": "A Secure Shell fingerprint is used to verify the system’s authenticity", | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. got it, I'll reorder and submit a new PR |
||
| "properties": { | ||
| "fingerprint": { | ||
| "type": "string" | ||
| }, | ||
| "algo": { | ||
| "type": "integer" | ||
| }, | ||
| "type": { | ||
| "type": "integer" | ||
| } | ||
| }, | ||
| "additionalProperties": false | ||
| } | ||
| }, | ||
| "additionalProperties": false | ||
|
|
@@ -1190,6 +1210,26 @@ | |
| "items": { | ||
| "type": "string" | ||
| } | ||
| }, | ||
| "SSHFP": { | ||
| "type": "array", | ||
| "description": "A Secure Shell fingerprint is used to verify the system’s authenticity", | ||
| "minItems": 1, | ||
| "items": { | ||
| "type": "object", | ||
| "properties": { | ||
| "fingerprint": { | ||
| "type": "string" | ||
| }, | ||
| "algo": { | ||
| "type": "integer" | ||
| }, | ||
| "type": { | ||
| "type": "integer" | ||
| } | ||
| }, | ||
| "additionalProperties": false | ||
| } | ||
| } | ||
| }, | ||
| "additionalProperties": false | ||
|
|
||
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.
this is an abbreviation for "truncated", right ?
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.
yes, I'll add that.