class Nmap::Parser::Host::Traceroute::Hop
This holds information on an individual traceroute hop
Attributes
addr[R]
IP address of the host
host[R]
Hostname of the host
hostname[R]
Hostname of the host
ipaddr[R]
IP address of the host
rtt[R]
Round-trip time of the host
ttl[R]
How many hops away the host is
Public Instance Methods
<=>(hop)
click to toggle source
Compares the TTLs
# File lib/nmap/parser.rb, line 1403 def <=>(hop) @ttl <=> hop.ttl end