Chilkat Examples

ChilkatHOME.NET Core C#Android™AutoItCC#C++Chilkat2-PythonCkPythonClassic ASPDataFlexDelphi ActiveXDelphi DLLGoJavaLianjaMono C#Node.jsObjective-CPHP ActiveXPHP ExtensionPerlPowerBuilderPowerShellPureBasicRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++VB.NETVBScriptVisual Basic 6.0Visual FoxProXojo Plugin

C++ Examples

Web API Categories

ASN.1
AWS KMS
AWS Misc
Amazon EC2
Amazon Glacier
Amazon S3
Amazon S3 (new)
Amazon SES
Amazon SNS
Amazon SQS
Async
Azure Cloud Storage
Azure Key Vault
Azure Service Bus
Azure Table Service
Base64
Bounced Email
Box
CAdES
CSR
CSV
Certificates
Code Signing
Compression
DKIM / DomainKey
DNS
DSA
Diffie-Hellman
Digital Signatures
Dropbox
Dynamics CRM
EBICS
ECC
Ed25519
Email Object
Encryption
FTP
FileAccess
Firebase
GMail REST API
GMail SMTP/IMAP/POP
Geolocation
Google APIs
Google Calendar
Google Cloud SQL
Google Cloud Storage
Google Drive
Google Photos
Google Sheets
Google Tasks
Gzip
HTML-to-XML/Text
HTTP

HTTP Misc
IMAP
JSON
JSON Web Encryption (JWE)
JSON Web Signatures (JWS)
JSON Web Token (JWT)
Java KeyStore (JKS)
MHT / HTML Email
MIME
MS Storage Providers
Microsoft Graph
Misc
NTLM
OAuth1
OAuth2
OIDC
Office365
OneDrive
OpenSSL
Outlook
Outlook Calendar
Outlook Contact
PDF Signatures
PEM
PFX/P12
PKCS11
POP3
PRNG
REST
REST Misc
RSA
SCP
SCard
SFTP
SMTP
SSH
SSH Key
SSH Tunnel
ScMinidriver
SharePoint
SharePoint Online
Signing in the Cloud
Socket/SSL/TLS
Spider
Stream
Tar Archive
ULID/UUID
Upload
WebSocket
XAdES
XML
XML Digital Signatures
XMP
Zip
curl
uncategorized

 

 

 

(C++) Revert to Default DNS Nameservers

See more DNS Examples

Demonstrates how to revert back to the default nameservers of the local system where your application is running.

Note: This example requires Chilkat v9.5.0.96 or later.

Chilkat C/C++ Library Downloads

MS Visual C/C++

Linux/CentOS C/C++

Alpine Linux C/C++

MAC OS X C/C++

armhf/aarch64 C/C++

C++ Builder

iOS C/C++

Android C/C++

Solaris C/C++

MinGW C/C++

#include <CkDns.h>

void ChilkatSample(void)
    {
    // The only reason you would have to revert back to the local system's default nameservers
    // is if your application had previously set different nameservers, and you wish to revert back.

    // When your application starts, the DNS nameservers to be used are the default nameservers
    // configured on the system where your application is running.

    // There is one exception: Chilkat defaults to using the public Google nameservers (8.8.8.8 and 8.8.4.4) for
    // Android applications. Reverting to the default nameservers would revert to the Google nameservers.

    // However, Chilkat does not query the local system for the default nameservers unless Chilkat needs
    // to do a DNS lookup and there not yet any DNS nameservers defined.  Thus technically, when your application
    // starts, there are no default nameservers. They are auto-assigned when first needed.

    // If your application explicitly defines DNS nameservers, such as by calling AddDefaultnamervers, or AddNameserver
    // then Chilkat will not automatically auto-assign.

    CkDns dns;

    // Here we are explicitly adding the system default nameservers, because technically this application
    // has not yet done anything that would require a DNS lookup, and thus DNS nameservers are not yet defined.
    // Your default nameserver is assumed to not support TLS.
    dns.AddDefaultNameservers();

    // Let's examine our nameservers
    int nsCount = dns.get_NumNameservers();
    int i = 0;
    while (i < nsCount) {
        std::cout << (i + 1) << ": " << dns.getNameserver(i) << "\r\n";
        i = i + 1;
    }

    // On my Windows system, the result is a single nameserver at 
    // 1: 172.16.16.16

    // ---------------------------------------------------------
    // We could add additional nameservers, such as Google and Cloudfare
    bool supportsTls = true;
    // Cloudfare
    dns.AddNameserver("1.1.1.1",supportsTls);
    // Google
    dns.AddNameserver("8.8.8.8",supportsTls);

    // See the nameservers now used by Chilkat
    nsCount = dns.get_NumNameservers();
    i = 0;
    while (i < nsCount) {
        std::cout << (i + 1) << ": " << dns.getNameserver(i) << "\r\n";
        i = i + 1;
    }

    // Result:
    // 1: 172.16.16.16
    // 2: 1.1.1.1
    // 3: 8.8.8.8

    // ---------------------------------------------------------
    // To revert back to the system default nameservers, clear all
    // then re-add the default.
    dns.RemoveAllNameservers();
    dns.AddDefaultNameservers();

    // See the nameservers now used by Chilkat
    nsCount = dns.get_NumNameservers();
    i = 0;
    while (i < nsCount) {
        std::cout << (i + 1) << ": " << dns.getNameserver(i) << "\r\n";
        i = i + 1;
    }

    // Result:
    // 1: 172.16.16.16
    }

 

© 2000-2024 Chilkat Software, Inc. All Rights Reserved.