diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/cowboy_protocol.erl | 2 | ||||
-rw-r--r-- | src/cowboy_websocket.erl (renamed from src/cowboy_http_websocket.erl) | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/cowboy_protocol.erl b/src/cowboy_protocol.erl index 06f18bb..fc5950a 100644 --- a/src/cowboy_protocol.erl +++ b/src/cowboy_protocol.erl @@ -327,7 +327,7 @@ handler_before_loop(HandlerState, Req, State) -> State2 = handler_loop_timeout(State), handler_loop(HandlerState, Req, State2). -%% Almost the same code can be found in cowboy_http_websocket. +%% Almost the same code can be found in cowboy_websocket. -spec handler_loop_timeout(#state{}) -> #state{}. handler_loop_timeout(State=#state{loop_timeout=infinity}) -> State#state{loop_timeout_ref=undefined}; diff --git a/src/cowboy_http_websocket.erl b/src/cowboy_websocket.erl index f4a774d..fe383c2 100644 --- a/src/cowboy_http_websocket.erl +++ b/src/cowboy_websocket.erl @@ -17,7 +17,7 @@ %% When using websockets, make sure that the crypto application is %% included in your release. If you are not using releases then there %% is no need for concern as crypto is already included. --module(cowboy_http_websocket). +-module(cowboy_websocket). %% API. -export([upgrade/4]). |