Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Working Sample Code for C++ Visual Studio 2010
Yes I'm providing the answer with the question, I hope this is useful to others.
Martin Politick

NOTE: my DNS (politick.ca) does not answer SRV records from its public interface, so if you leave the code as is, the query will fail. You need to change the domain to yours.
Obviously you can also replace the Service and Protocol to suite your needs.

    //// ---------
    //// Resolve a server name and port on a particular domain using a Service Query to a user specified DNS server
    //// ---------
    char        DnsServerIp[255] = {};          // will hold the user defined, IPV4 string of the DNS address to query

    //// Get the DNS IP that we want to query from the command line
    strcpy( DnsServerIp, T2A(argv[2]));

    //// Setup the IP4_ARRAY structure to Specify the USER defined DNS server to send the query to
    PIP4_ARRAY      DnsServerList = NULL;
    DnsServerList   = (PIP4_ARRAY) LocalAlloc( LPTR, sizeof(IP4_ARRAY) );
    if( DnsServerList == NULL )
    {
        printf( "Memory allocation failed\n" );             // How could this actually happen really?
        exit(__LINE__);
    }
    DnsServerList->AddrCount    = 1;
    DnsServerList->AddrArray[0] = inet_addr( DnsServerIp ); //DNS server IP address

    //// Setup the DNS query
    DNS_STATUS  DnsStatus        =  0;          // return status of the DnsQuery, the English explanation of the error codes are located in WinError.h
    PDNS_RECORD QueryResultsSet  = NULL;        // The result returned from the remote DNS server
    PDNS_RECORD DnsRecordIndexer = NULL;        // A pointer that will be used to traverse the DNS_RECORDS that are returned in the Query Result List

    //// Ask the remote DNS server specified in DnsServerList->AddrArray[0]
    //// bypassing the local cached DNS entries: DNS_QUERY_BYPASS_CACHE, really ask the remote DNS
    //// we are looking for SRV records.  SRV records is a neet "auto configuration" that can be achieved using a DNS server.  It tells the client what is the name of the machine and port of the machine that can service what he's looking for.
    //// The SRV name query needs to be in this format "_Service._Protocol.DomainName", where:
    ////    Service : is the symbolic name of the type of service you're looking for.  Example "sip", that's a VoIP protocol.
    ////    Protocol: is the trnsport protocol that you want to use with the service.  Example "udp" or "tcp" or anyother 
    ////    DomainName: is the domain name where you're looking to receive the service from.  Example "politick.ca"
    DnsStatus = DnsQuery_A( "_sip._udp.politick.ca", DNS_TYPE_SRV, DNS_QUERY_BYPASS_CACHE, DnsServerList, &QueryResultsSet, NULL);


    printf("%s: I've just queried the DNS at IPV4 %s ", T2A(argv[0]), DnsServerIp);
    if( DnsStatus )
        printf(" and there was a PROBLEM. Status = %d.\nPlease see WinError.h for further details on the error number\n", (int) DnsStatus);
    else
        printf("and the answers are:\n");

    //// Go through the list of answers that fits our query criteria
    DnsRecordIndexer = QueryResultsSet;     // Set the indexer at the begining of the answer list
    while( DnsRecordIndexer != NULL)
    {
        printf("%s\t%s : %d\n", T2A(argv[0]) , QueryResultsSet->Data.SRV.pNameTarget, (int) QueryResultsSet->Data.SRV.wPort );
        DnsRecordIndexer = DnsRecordIndexer->pNext;
    }

    //// Release records from query
    DnsRecordListFree(QueryResultsSet, DnsFreeRecordList);
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.