Winsock2 Internet functions

This sample was contributed by Steve Bryndin

I have written a small MFC class that allows you to ping remote computers over
internet. This class is very similar to one posted by Les Jordan but it doesn’t use
ICMP.DLL. Instead it uses normal ws2_32.dll.

This class is a mixture of Les Jordan class(address resolution functions) and SDK ping
example.

You must make sure that WS2_32.DLL and WS2_32.LIB is present on your system(NT4.0 with
service pack 3 normally should have this dll on the system, I didn’t see on the Windows
95, but Microsoft claims that it is available for 95 as well).

Include WINSOCK2.H in STDAFX.H file. In linker specify WS2_32.LIB.

You would have to call WSAStartup from Application entry point. Don’t call
AfxSocketInit(), it will not work.

This class performs following functions:

  • Pings remote computer.
  • Retrieves time on remote computer(if their time service is running).
  • Checks alive ports on remote computer.
  • Resolves IP address to Host name.
  • Resolves Host name to IP address.

This class includes 5 public functions:

	CString GetRemoteTime(CString strHost);
	BOOL ScanPorts(CString strHost, LIVE_PORTS *pPorts, UINT nPort);
	CString Ping(CString strHost, UINT nPacketSize);
	CString ResolveHostToIP(CString strHost);
	CString ResolveIPToHost(CString strIP);

GetRemoteTime:
accepts Host name in form "ANYHOST.ANYDOMAIN.COM". It returns formatted CString
that contain remote computer's time.

ScanPorts:
strHostOrIP - CString with Host name in form "ANYHOST.ANYDOMAIN.COM".
pPorts - address of structure:

	typedef struct tagLIVE_PORTS
	{
		CString	strName;      // Name of service running on this port
		CString	strAliases;   // Service aliases.
		short       s_port;   // Port number.
   		CString     strProto; // Protocol used.
	}LIVE_PORTS;

nPort - Unsigned integer port number.
Return value: If functions succeeds return value is TRUE and structure LIVE_PORTS is
populated with port data. If the function fails, return value is FALSE, structure is
empty.

Ping:
strHost - Host name in form "ANYHOST.ANYDOMAIN.COM".
nPacketSize - Size of packet in bytes. If the value is 0, then default 32 bytes sent to
the remote computer.
Return value: Formatted CString in form "64 bytes from 10.10.0.1: icmp_seq=0, time =
3.1 ms".

ResolveHostToIP: accepts Host name in form
"ANYHOST.ANYDOMAIN.COM". It returns IP address in form
"xxx.xxx.xxx.xxx".

ResolveIPToHost: accepts IP address in form
"xxx.xxx.xxx.xxx". It returns Host name in form
"ANYHOST.ANYDOMAIN.COM".

Download
Source

More by Author

Get the Free Newsletter!

Subscribe to Developer Insider for top news, trends & analysis

Must Read