22 lines
245 B
Ruby
22 lines
245 B
Ruby
|
module Msf
|
||
|
###
|
||
|
#
|
||
|
# The states that a host can be in.
|
||
|
#
|
||
|
###
|
||
|
module HostState
|
||
|
#
|
||
|
# The host is alive.
|
||
|
#
|
||
|
Alive = "alive"
|
||
|
#
|
||
|
# The host is dead.
|
||
|
#
|
||
|
Dead = "down"
|
||
|
#
|
||
|
# The host state is unknown.
|
||
|
#
|
||
|
Unknown = "unknown"
|
||
|
end
|
||
|
end
|