Files
metasploit-gs/lib/msf/core/session/comm.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

28 lines
501 B
Ruby

require 'rex/socket'
module Msf
module Session
###
#
# This class implements the Rex::Socket::Comm module interface and is capable
# of creating network-based connections that are pivoted from the session in
# question.
#
###
module Comm
include Rex::Socket::Comm
#
# Session-based comm classes implement an instance specific method for
# creating network-based connections rather than the typicall class
# specific methods.
#
def create(param)
raise NotImplementedError
end
end
end
end