mirror of
https://github.com/ninenines/cowboy.git
synced 2025-07-14 20:30:23 +00:00

It allows to temporarily disable Websocket compression when it was negotiated. It's ignored otherwise. This can be used as fine-grained control when some frames do not compress well.
24 lines
734 B
Erlang
24 lines
734 B
Erlang
%% This module enables/disables compression
|
|
%% every time it echoes a frame.
|
|
|
|
-module(ws_deflate_commands_h).
|
|
-behavior(cowboy_websocket).
|
|
|
|
-export([init/2]).
|
|
-export([websocket_handle/2]).
|
|
-export([websocket_info/2]).
|
|
|
|
init(Req, RunOrHibernate) ->
|
|
{cowboy_websocket, Req,
|
|
#{deflate => true, hibernate => RunOrHibernate},
|
|
#{compress => true}}.
|
|
|
|
websocket_handle(Frame, State=#{deflate := Deflate0, hibernate := run}) ->
|
|
Deflate = not Deflate0,
|
|
{[Frame, {deflate, Deflate}], State#{deflate => Deflate}};
|
|
websocket_handle(Frame, State=#{deflate := Deflate0, hibernate := hibernate}) ->
|
|
Deflate = not Deflate0,
|
|
{[Frame, {deflate, Deflate}], State#{deflate => Deflate}, hibernate}.
|
|
|
|
websocket_info(_Info, State) ->
|
|
{[], State}.
|