class HTTP::Request

def stream(socket)

Stream the request to a socket
def stream(socket)
  include_proxy_headers if using_proxy? && !@uri.https?
  Request::Writer.new(socket, body, headers, headline).stream
end