class HTTP::Request::Writer

def join_headers

http request header string
Joins the headers specified in the request into a correctly formatted
def join_headers
  # join the headers array with crlfs, stick two on the end because
  # that ends the request header
  @request_header.join(CRLF) + CRLF * 2
end