Skip to content

Commit

Permalink
Merge pull request alex#148 from BenjaminProgram/fix
Browse files Browse the repository at this point in the history
Fixed build errors

Closes alex#136
  • Loading branch information
therealphildini committed Feb 6, 2015
2 parents 4f162c3 + 8ed623a commit 5089df2
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -404,6 +404,7 @@ request to the server of the form::

GET / HTTP/1.1
Host: google.com
Connection: close
[other headers]

where ``[other headers]`` refers to a series of colon-separated key-value pairs
Expand All @@ -413,6 +414,14 @@ HTTP spec. This also assumes that the web browser is using ``HTTP/1.1``,
otherwise it may not include the ``Host`` header in the request and the version
specified in the ``GET`` request will either be ``HTTP/1.0`` or ``HTTP/0.9``.)

HTTP/1.1 defines the "close" connection option for the sender to signal that
the connection will be closed after completion of the response. For example,

Connection: close

HTTP/1.1 applications that do not support persistent connections MUST include
the "close" connection option in every message.

After sending the request and headers, the web browser sends a single blank
newline to the server indicating that the content of the request is done.

Expand Down

0 comments on commit 5089df2

Please sign in to comment.