Split Msf::HostState into own file

MSP-11124
bug/bundler_fix
Luke Imhoff 2014-10-08 11:37:59 -05:00
parent a0a19e5ce8
commit 6e6780da86
No known key found for this signature in database
GPG Key ID: 5B1FB01FB33356F8
2 changed files with 22 additions and 20 deletions

View File

@ -57,29 +57,10 @@ require 'rex/parser/retina_xml'
require 'metasploit/framework/require'
require 'msf/core/db_manager/import_msf_xml'
require 'msf/core/host_state'
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
###
#
# The states that a service can be in.

View File

@ -0,0 +1,21 @@
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