Files
metasploit-gs/lib/msf/core/handler/none.rb
T
Matt Miller 11724ac797 fixed stager merging, made things a bit more pimply
git-svn-id: file:///home/svn/incoming/trunk@2774 4d416f70-5f16-0410-b530-b9f4589650da
2005-07-17 06:01:11 +00:00

26 lines
230 B
Ruby

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