Files
metasploit-gs/lib/msf/core/handler/none.rb
T
Ramon de C Valle f124597a56 Code cleanups
git-svn-id: file:///home/svn/framework3/trunk@5773 4d416f70-5f16-0410-b530-b9f4589650da
2008-10-19 21:03:39 +00:00

30 lines
377 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