Files
metasploit-gs/lib/msf/core/host_state.rb
T

10 lines
199 B
Ruby
Raw Normal View History

2014-10-08 11:37:59 -05:00
# The states that a host can be in.
2014-10-08 11:43:28 -05:00
module Msf::HostState
2014-10-08 11:37:59 -05:00
# The host is alive.
Alive = "alive"
# The host is dead.
Dead = "down"
# The host state is unknown.
Unknown = "unknown"
end