Files
metasploit-gs/lib/msf/core/handler/none.rb
T
Matt Miller 5676117bff last of normalized docs from last night
git-svn-id: file:///home/svn/incoming/trunk@3030 4d416f70-5f16-0410-b530-b9f4589650da
2005-11-15 15:11:43 +00:00

31 lines
378 B
Ruby

module Msf
module Handler
###
#
# The 'none' handler, for no connection.
#
###
module None
include Msf::Handler
#
# Returns the handler type of none since payloads that use this handler
# have no connection.
#
def self.handler_type
return "none"
end
#
# Returns none to indicate no connection.
#
def self.general_handler_type
return "none"
end
end
end
end