Internet Direct (Indy)
|
Represents the Header section in a DNS message packet.
TDNSHeader = class;
TDNSHeader is a TObject descendant that represents the Header section in a DNS message packet. A DNS message packet may contain the following 5 sections:
Section |
Description |
Header |
|
Question |
question for the name server |
Answer |
resource records answering the question |
Authority |
resource records pointing toward an authority |
Additional |
resource records holding additional information |
The TDNSHeader header section is always present in the message packet, and includes values that specify which of the remaining sections are present. TDNSHeader also provides properties specific to the header section or the entire message packet, including:
Field |
Description |
Identifier assigned to a DNS query. | |
Query (0) or Response (1) flag. | |
Indicates the kind of query to be performed. | |
Indicates the responsing DNS server is an authority for the domain. | |
Indicates the message was truncated. | |
Indicates recurive queries are desired on the DNS server. | |
Indicates recurive queries are available on the DNS server. | |
Response code from the DNS server. | |
Number of entries in the DNS Question section. | |
Number of resource records in the DNS Answer section. | |
Number of resource records in the DNS Authority section. | |
Number of resource records in the DNS Additional section. |
TDNSHeader is used in the message packet for both a DNS query and a DNS response, although some values are only appropriate in one or the other context.
Internet Direct (Indy) version 10.1.5
Copyright © 1993-2006, Chad Z. Hower (aka Kudzu) and the Indy Pit Crew. All rights reserved. Website http://www.indyproject.org. Post feedback to the Indy Documentation newsgroup. |