ááááááááááTrace
ááááááááááClass
ááááááááááMemberáof áTCPIP

áDescriptioná
Provides TraceRoute (See asp or VB samples)
áMethodsá
OneStepáThe OneStep method sends an ICMP echo request to the specified destination host and returns any replies received within the timeout specified.
áPropertiesá
IPFlags, Byte, RWáIP header flags
RequestSize, Long, RWáSize of request in bytes.
TimeOut, Long, RWáTime in milliseconds to wait for reply
TTL, Byte, RWáTime To Live
TypeOfService, Byte, RWáType Of Service
DataSize, Long, ROáEcho data size.
RoundTripTime, Long, ROáRound Trip Time in milliseconds
Status, IPStatus, ROáIP status value
áExamplesá
Simple trace for VBá
  Dim Trace
  Set Trace = CreateObject("TCPIP.Trace")
  Dim I, IP, RoundTripTime, Status, TTL
  Trace.Timeout = 8000
  For I = 1 To 10
    IP = Trace.OneStep(I, "www.microsoft.com")
    Debug.Print IP & Chr$(9) & Trace.RoundTripTime & Chr$(9) & Trace.TTL & Chr$(9) & Trace.Status
    If Trace.Status = 0 Then I = 100
  Next I
ASP Trace routeá
TraceRoute from www.pstruh.cz

⌐ 1996 û 1998 PSTRUH Software, help@pstruh.cz