Struct trust_dns::client::SecureSyncClient [] [src]

pub struct SecureSyncClient { /* fields omitted */ }

A DNS client which will validate DNSSec records upon receipt

Methods

impl SecureSyncClient
[src]

Creates a new DNS client with the specified connection type

Arguments

  • client_connection - the client_connection to use for all communication

Deprecated

DNSSec validating query, this will return an error if the requested records can not be validated against the trust_anchor.

Deprecated This function only exists for backward compatibility. It's just a wrapper around Client::query at this point

When the resolver receives an answer via the normal DNS lookup process, it then checks to make sure that the answer is correct. Then starts with verifying the DS and DNSKEY records at the DNS root. Then use the DS records for the top level domain found at the root, e.g. 'com', to verify the DNSKEY records in the 'com' zone. From there see if there is a DS record for the subdomain, e.g. 'example.com', in the 'com' zone, and if there is use the DS record to verify a DNSKEY record found in the 'example.com' zone. Finally, verify the RRSIG record found in the answer for the rrset, e.g. 'www.example.com'.

Note As of now, this will not recurse on PTR or CNAME record responses, that is up to the caller.

Arguments

  • query_name - the label to lookup
  • query_class - most likely this should always be DNSClass::IN
  • query_type - record type to lookup

Trait Implementations

impl Client<SecureClientHandle<BasicClientHandle>> for SecureSyncClient
[src]

get a mutable reference to the tokio Core associated to the Client

Get a mutable handle reference tot the Core assiated to the Client

A classic DNS query, i.e. does not perform and DNSSec operations Read more

Sends a NOTIFY message to the remote system Read more

Sends a record to create on the server, this will fail if the record exists (atomicity depends on the server) Read more

Appends a record to an existing rrset, optionally require the rrset to exis (atomicity depends on the server) Read more

Compares and if it matches, swaps it for the new value (atomicity depends on the server) Read more

Deletes a record (by rdata) from an rrset, optionally require the rrset to exist. Read more

Deletes an entire rrset, optionally require the rrset to exist. Read more

Deletes all records at the specified name Read more