diff options
Diffstat (limited to 'src/gun_ws.erl')
-rw-r--r-- | src/gun_ws.erl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gun_ws.erl b/src/gun_ws.erl index f59c19c..cd81d65 100644 --- a/src/gun_ws.erl +++ b/src/gun_ws.erl @@ -26,6 +26,7 @@ -export([close/4]). -export([keepalive/3]). -export([ws_send/5]). +-export([ws_send/6]). -export([down/1]). -record(payload, { @@ -289,6 +290,9 @@ ws_send([Frame|Tail], State, ReplyTo, EvHandler, EvHandlerState0) -> Other end. +ws_send(Frames, State, _StreamRef, ReplyTo, EvHandler, EvHandlerState) -> + ws_send(Frames, State, ReplyTo, EvHandler, EvHandlerState). + %% Websocket has no concept of streams. down(_) -> []. |