1# The states that a host can be in. 2module Msf::HostState 3 # The host is alive. 4 Alive = "alive" 5 # The host is dead. 6 Dead = "down" 7 # The host state is unknown. 8 Unknown = "unknown" 9end 10 11