metasploit-framework/lib/rex/io.rb

17 lines
457 B
Ruby

##
# $Id$
#
# This file simply provides an autoload interface for the children
# of Rex::IO
#
##
module Rex::IO
autoload :Stream, 'rex/io/stream'
autoload :StreamAbstraction, 'rex/io/stream_abstraction'
autoload :StreamServer, 'rex/io/stream_server'
autoload :BidirectionalPipe, 'rex/io/bidirectional_pipe'
autoload :DatagramAbstraction, 'rex/io/datagram_abstraction'
autoload :RingBuffer, 'rex/io/ring_buffer'
end