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