Browse Source

Do not try to keep-alive when using HTTP/1.0

Loïc Hoguin 12 years ago
parent
commit
5bc5f56eb2
1 changed files with 2 additions and 4 deletions
  1. 2 4
      src/cowboy_req.erl

+ 2 - 4
src/cowboy_req.erl

@@ -183,15 +183,13 @@ new(Socket, Transport, Method, Path, Query, Fragment,
 		method=Method, path=Path, qs=Query, fragment=Fragment, version=Version,
 		headers=Headers, host=Host, port=Port, buffer=Buffer,
 		onresponse=OnResponse},
-	case CanKeepalive of
+	case CanKeepalive and (Version =:= {1, 1}) of
 		false ->
 			Req#http_req{connection=close};
 		true ->
 			case lists:keyfind(<<"connection">>, 1, Headers) of
-				false when Version =:= {1, 1} ->
-					Req; %% keepalive
 				false ->
-					Req#http_req{connection=close};
+					Req; %% keepalive
 				{_, ConnectionHeader} ->
 					Tokens = parse_connection_before(ConnectionHeader, []),
 					Connection = connection_to_atom(Tokens),