Click here to Skip to main content
15,879,535 members
Articles / Desktop Programming / MFC
Article

A Simple DNS Resolver

Rate me:
Please Sign up or sign in to vote.
4.07/5 (21 votes)
27 Mar 2004CPOL1 min read 121.3K   7.3K   32   12
A simple DNS resolver compiled under Bloodshed C++ and using the Winsock 1.1 API

Sample Image - dns_resolver.jpg

Introduction

This is my first socks program. Actually, it's the first one I completed since I want to test it's fuctionality before adding it to my main project. It is a simple DNS resolver using the Winsock API (v1.1). The program is a console application that accepts hostname or IP address parameters which will be resolved using gethostbyname and/or gethostbyaddress functions.

I really had a hard time of looking for a DNS query code in the net using the winsock API so I decided to try and make one myself. I have actually tested the program and it works. Of course, you need an internet connection to query DNS outside your network, and if the IP/host you queried is dead or has no reverse DNS then it would just state a DNS lookup failed!

The source code has comments on it and is fairly understandable for intermediate and perhaps beginners in winsock programming. It is mainly focused on the hostent structure since I had a hard time implementing it before. It is compiled in Dev-C++ which you could download at http://www.bloodshed.net/ using its default libraries. I've also placed some comments on the source code for information on how to compile it.

Feel free to comment...

License

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


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

Comments and Discussions

 
GeneralBUILD problem Pin
motz14313-Oct-09 7:01
motz14313-Oct-09 7:01 
GeneralSlow if the host doesn't exist Pin
Ludvik Jerabek23-Jan-08 15:27
Ludvik Jerabek23-Jan-08 15:27 
GeneralRe: Slow if the host doesn't exist Pin
JLèé23-Jan-08 23:21
JLèé23-Jan-08 23:21 
QuestionProblem in Building.... Pin
charlesra20522-Aug-06 4:02
charlesra20522-Aug-06 4:02 
AnswerRe: Problem in Building.... Pin
JLèé22-Aug-06 10:48
JLèé22-Aug-06 10:48 
Generalcompile Pin
Dave_Nunes24-Jan-06 10:08
Dave_Nunes24-Jan-06 10:08 
GeneralCongratulations Pin
Tommahawk12-Jan-05 17:15
Tommahawk12-Jan-05 17:15 
GeneralRe: Congratulations Pin
JLèé12-Jan-05 20:59
JLèé12-Jan-05 20:59 
GeneralQueries Pin
AslFunky2-Jan-05 7:37
AslFunky2-Jan-05 7:37 
GeneralRe: Queries Pin
JLèé12-Jan-05 22:05
JLèé12-Jan-05 22:05 
GeneralRe: Queries Pin
AslFunky15-Jan-05 8:01
AslFunky15-Jan-05 8:01 
GeneralRe: Queries Pin
EastMohican14-Jul-05 15:20
EastMohican14-Jul-05 15:20 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.