Using the TVPing Utility

CodeGuru content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More.

Environment: VC++6, MFC

TVping

Here is one more ping utility with a graphical representation of the response time. It can be used on the Microsoft Windows platforms. It is also a usual ping technique, but it has nice code (I think) that draws a graph. The source code that’s provided uses MFC and needs to be compiled with VC++6.

Purpose

It allows the user to test the reachability of another host in the network, and also to know about the response time and the integrity of data sent. The user can know the performance of the remote IP device and the network speed.

Goal

A software package that can interpret the above requirement is needed. It should be highly innovative and very user-friendly. Moreover, there should be a graphical presentation to enrich the illustrative presentation of results.

Implementation

VC++ MFC is used to create this software, using an object-oriented coding approach. The “PING” technique is used to verify the network connections and get the performance results.

PING

PING stands for Packet INternet Groper and provides a connectionless verification of the availability of a remote IP device. PING uses ICMP Echo and Echo Reply protocol data units, encapsulated within IP datagrams.

Performing PING

Follow these steps to use the program:

  1. Create a Raw socket with control message protocol.
  2. Send an ICMP header with an ICMP request and optional data packets to the desired host. The host replies as it sends back the data packets, ICMP header, and additional IP Header.
  3. Before sending the ICMP request data packets, we should fill the checksum field with the checksum value of data packets, inclusive of the ICMP header. We can know the elapsed time by sending the current timer value with the data packet. This same data packet will be sent back by the host. We can know the elapsed time by comparing the sent time with the current time while receiving.
  4. Verify the data integrity by verifying the checksum field of ICMP header.
  5. Raw sockets are connectionless sockets, so we have to use synchronized methods of the “sento” and “recvefrom” APIs.
  6. In the ICMP protocol, sockets are not connected with any Port number of receiving host because as an ICMP protocol, no “bind” and “accept” concepts are at the receiving end.

Downloads


Download documentation – 5 Kb


Download source – 56 Kb

More by Author

Get the Free Newsletter!

Subscribe to Developer Insider for top news, trends & analysis

Must Read