Click here to Skip to main content
15,892,804 members
Articles / Desktop Programming / MFC

DNS if u need it

Rate me:
Please Sign up or sign in to vote.
4.11/5 (9 votes)
1 Oct 2002 109.8K   1.9K   20  
Simple quering DNS servers for retrieve information about host's DNS records
#include "dns.h"
#include <map>

class _DNSR;
class CDnsResolver : protected CAsyncSocket
{
public:
	CDnsResolver();
	virtual ~CDnsResolver();

public:
	void SkipQuery(_DNSPACKET* pPacket);
	BOOL GetMX(LPCSTR Addr, CStringArray& arr);
	BOOL Create(LPCSTR lpzDnsServer);

protected:
	typedef std::map<USHORT, _DNSR*>	dnsMap;
	dnsMap	m_DnsIndexMap;
	_DNSPACKET m_Dns;
	CString m_DnsServer;
	CCriticalSection m_LockDnsPacket;
protected:
	virtual void OnReceive(int nErrorCode);
	_DNSPACKET* Query(LPCSTR Addr, _DNSTYPE Type, _DNSCLASS Class = classIN);
};

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 has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
Russian Federation Russian Federation
Programmer with 5 year of work
like networking applications and fun codes

Comments and Discussions