Hostname Resolving | CodeGuru

Hostname Resolving

Environment: VC6 SP4, NT4 SP3, Win 98, Win ME Have you ever offered an edit control in your application in which the user had to enter an IP address or Hostname? After the user entered the hostname or IP you have to check what was entered. (IP or hostname???) Then you have to convert the […]

Written By
CodeGuru Staff
CodeGuru Staff
Sep 4, 2001
1 minute read
CodeGuru content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More

Environment: VC6 SP4, NT4 SP3, Win 98, Win ME

Have you ever offered an edit control in your application in which the user had to enter an IP address or Hostname?

After the user entered the hostname or IP you have to check what was entered. (IP or hostname???) Then you have to convert the userinput into a proper address for the in_addr structure.

This is really annoying. I looked for a smother way. The function GetAddress (const char* p_pHost) is the result. You just hand over a string containing an IP or Hostname and GetAddress returns the proper address for the in_addr structure.

This function is useful for developers who directly access the Winsock API instead of using CAsyncSocket or CSocket. Or, if you wrote your own Socket class and want to offer a connect routine like in CAsyncSocket where you can enter either an IP or Hostname.

The demo project shows how to use GetAddress. It’s a simple console based application. The function definition is as follows:

     unsigned long GetAddress (const char* p_pHost)

Below are a few examples showing how to use the function:

unsigned long NetworkHostAddress;
NetworkHostAddress = GetAddress ("https://www.codeguru.com&quot);
NetworkHostAddress = GetAddress ("63.236.73.79");

Downloads


Download demo project – 51 Kb


Download source – 2 Kb

CodeGuru Logo

CodeGuru covers topics related to Microsoft-related software development, mobile development, database management, and web application programming. In addition to tutorials and how-tos that teach programmers how to code in Microsoft-related languages and frameworks like C# and .Net, we also publish articles on software development tools, the latest in developer news, and advice for project managers. Cloud services such as Microsoft Azure and database options including SQL Server and MSSQL are also frequently covered.

Property of TechnologyAdvice. © 2026 TechnologyAdvice. All Rights Reserved

Advertiser Disclosure: Some of the products that appear on this site are from companies from which TechnologyAdvice receives compensation. This compensation may impact how and where products appear on this site including, for example, the order in which they appear. TechnologyAdvice does not include all companies or all types of products available in the marketplace.