f124597a56
git-svn-id: file:///home/svn/framework3/trunk@5773 4d416f70-5f16-0410-b530-b9f4589650da
30 lines
377 B
Ruby
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 |