Files
metasploit-gs/lib/msf/core/handler/none.rb
T
Matt Miller 6a5870ddcd updated comments to be more uniformed in class definition
git-svn-id: file:///home/svn/incoming/trunk@3004 4d416f70-5f16-0410-b530-b9f4589650da
2005-11-02 16:49:45 +00:00

27 lines
262 B
Ruby

module Msf
module Handler
###
#
# The 'none' handler, for no connection.
#
###
module None
include Msf::Handler
#
# Returns the handler type
#
def self.handler_type
return "none"
end
def self.general_handler_type
return "none"
end
end
end
end