2011-05-06 18:47:10 +00:00
|
|
|
# These are required by all uses of Rex::Proto::Http
|
2005-07-24 20:53:54 +00:00
|
|
|
require 'rex/proto/http/packet'
|
|
|
|
require 'rex/proto/http/request'
|
|
|
|
require 'rex/proto/http/response'
|
2011-05-06 18:47:10 +00:00
|
|
|
|
|
|
|
# These are specific to use case
|
|
|
|
module Rex
|
|
|
|
module Proto
|
|
|
|
module Http
|
|
|
|
|
|
|
|
autoload :Client, 'rex/proto/http/client'
|
|
|
|
|
|
|
|
autoload :Server, 'rex/proto/http/server'
|
|
|
|
autoload :Handler, 'rex/proto/http/handler'
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|