lib/async/http/protocol/request.rb in async-http-0.9.0 vs lib/async/http/protocol/request.rb in async-http-0.10.0
- old
+ new
@@ -19,10 +19,10 @@
# THE SOFTWARE.
module Async
module HTTP
module Protocol
- class Request < Struct.new(:method, :path, :version, :headers, :body)
+ class Request < Struct.new(:authority, :method, :path, :version, :headers, :body)
def read
@body
end
end
end