0
Fork 0
mirror of https://github.com/ninenines/cowboy.git synced 2025-07-16 05:00:24 +00:00

Rename the type http_version/0 to cowboy_http:version/0

This commit is contained in:
Loïc Hoguin 2012-01-23 09:28:29 +01:00
parent 314483a0b6
commit 8622dff906
4 changed files with 6 additions and 6 deletions

View file

@ -109,7 +109,7 @@ wait_request(State=#state{socket=Socket, transport=Transport,
end.
-spec request({http_request, cowboy_http:method(), cowboy_http:uri(),
http_version()}, #state{}) -> ok | none().
cowboy_http:version()}, #state{}) -> ok | none().
request({http_request, _Method, _URI, Version}, State)
when Version =/= {1, 0}, Version =/= {1, 1} ->
error_terminate(505, State);
@ -422,7 +422,7 @@ terminate(#state{socket=Socket, transport=Transport}) ->
%% Internal.
-spec version_to_connection(http_version()) -> keepalive | close.
-spec version_to_connection(cowboy_http:version()) -> keepalive | close.
version_to_connection({1, 1}) -> keepalive;
version_to_connection(_Any) -> close.