TPing Last Updated: 10/29/2001 |
TPing uses the ICMP protocol to "ping" a remote host.
Here are the sections available for the TPing:
- [ Properties ]
- [ Events ]
- [ Methods ]
- [ Hints ]
Below is the full description for all the sections in the TPing:
Below is a list of all Properties for use as a quick reference:
Below is a list of all Properties with their complete descriptions:
Address: | The IP or hostname of the host you want to ping. |
[Return to Top] | |
Flags: | Flags passed to the system changing how packets are handled. Only IP_FLAG_DF is defined at this time. IP_FLAG_DF - Requests that packets not be fragmented. |
[Return to Top] | |
Name: | The name of the class variable. |
[Return to Top] | |
Size: | The size of the ICMP packet. Default is 56 bytes. |
[Return to Top] | |
Tag: | Undefined, for programmer's use. |
[Return to Top] | |
Timout: | Time to wait for response (in milliseconds). Default is 4000, or 4 seconds. |
[Return to Top] | |
TTL: | Time-To-Live, the maximum number of hops a ping should take to the remote host. Default is 64 hops. |
[Return to Top] | |
Below is a list of all Events for use as a quick reference:
Below is a list of all Events with their complete descriptions:
OnDisplay: | Function called when there is an error. |
[Return to Top] | |
OnDnsLookupDone: | Function called after a hostname is translated to its IP address. |
[Return to Top] | |
OnEchoReply: | Function called when a reply is received from a remote host. |
[Return to Top] | |
OnEchoRequest: | Function called when a ping is sent. |
[Return to Top] | |
Below is a list of all Methods for use as a quick reference:
Below is a list of all Methods with their complete descriptions:
Ping: | Use this method to ping a host. Returns non-zero if the host responds, zero if there was no response. |
[Return to Top] | |
DnsLookup: | Looks up the IP from a hostname from your default DNS server. |
[Return to Top] | |
CancelDnsLookup: | Cancels a stalled DNS lookup. |
[Return to Top] | |
Below is a list of all Hints for use as a quick reference:
Below is a list of all Hints with their complete descriptions:
First of all: | Take a good look at the PingTst example.... |
[Return to Top] | |