Click here to Skip to main content
15,885,216 members
Articles / Desktop Programming / MFC

CDNS 1.0 - An MFC DNS class

Rate me:
Please Sign up or sign in to vote.
3.83/5 (20 votes)
22 May 2005CPOL 64.9K   1.7K   28  
An MFC implementation of a DNS class, it can retrieve multiple IPs and hostnames.
// CDNS.h : header file
//

#ifndef _CDNS_H
#define _CDNS_H

/////////////////////////////////////////////////////////////////////////////
// CDNS definitions

class CDNS
{
public:
	CDNS(); 
	CString     GetHostname() { return inHost; }
	BOOL        DoDNSLookup();
	CString     GetIPAt(int number);
	CString     GetHostAt(int number);
	int         GetNumberOfHosts() { return numHosts; }
	int         GetNumberOfIP() { return numIPs; }
	void        SetHostname(CString hostname) { inHost = hostname; }

protected:
	CString      inHost;
	int          numHosts;
	int          numIPs;
	CStringArray outHosts;
	CStringArray outIPs;
};

#endif

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
CEO
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions