Skip to content

Commit

Permalink
Rename cowboy_http_protocol to cowboy_protocol
Browse files Browse the repository at this point in the history
  • Loading branch information
essen committed Aug 27, 2012
1 parent cc2e084 commit 9e2622b
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/cowboy.erl
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@
start_http(Ref, NbAcceptors, TransOpts, ProtoOpts)
when is_integer(NbAcceptors), NbAcceptors > 0 ->
ranch:start_listener(Ref, NbAcceptors,
ranch_tcp, TransOpts, cowboy_http_protocol, ProtoOpts).
ranch_tcp, TransOpts, cowboy_protocol, ProtoOpts).

%% @doc Start an HTTPS listener.
-spec start_https(any(), non_neg_integer(), any(), any()) -> {ok, pid()}.
start_https(Ref, NbAcceptors, TransOpts, ProtoOpts)
when is_integer(NbAcceptors), NbAcceptors > 0 ->
ranch:start_listener(Ref, NbAcceptors,
ranch_ssl, TransOpts, cowboy_http_protocol, ProtoOpts).
ranch_ssl, TransOpts, cowboy_protocol, ProtoOpts).

%% @doc Stop a listener.
-spec stop_listener(any()) -> ok.
Expand Down
2 changes: 1 addition & 1 deletion src/cowboy_http_static.erl
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@
-include("http.hrl").
-include_lib("kernel/include/file.hrl").

%% cowboy_http_protocol callbacks
%% cowboy_protocol callbacks
-export([init/3]).

%% cowboy_http_rest callbacks
Expand Down
2 changes: 1 addition & 1 deletion src/cowboy_http_websocket.erl
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ upgrade_error(Req) ->
Req#http_req{resp_state=waiting}),
closed.

%% @see cowboy_http_protocol:ensure_response/1
%% @see cowboy_protocol:ensure_response/1
-spec upgrade_denied(#http_req{}) -> closed.
upgrade_denied(#http_req{resp_state=done}) ->
closed;
Expand Down
2 changes: 1 addition & 1 deletion src/cowboy_http_protocol.erl → src/cowboy_protocol.erl
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
%%
%% @see cowboy_dispatcher
%% @see cowboy_http_handler
-module(cowboy_http_protocol).
-module(cowboy_protocol).

%% API.
-export([start_link/4]).
Expand Down
2 changes: 1 addition & 1 deletion test/http_SUITE.erl
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ http10_hostless(Config) ->
Name = list_to_atom("http10_hostless_" ++ integer_to_list(Port10)),
ranch:start_listener(Name, 5,
?config(transport, Config), ?config(opts, Config) ++ [{port, Port10}],
cowboy_http_protocol, [
cowboy_protocol, [
{dispatch, [{'_', [
{[<<"http1.0">>, <<"hostless">>], http_handler, []}]}]},
{max_keepalive, 50},
Expand Down

0 comments on commit 9e2622b

Please sign in to comment.