diff options
Diffstat (limited to 'src/gun_tls_proxy_http2_connect.erl')
-rw-r--r-- | src/gun_tls_proxy_http2_connect.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gun_tls_proxy_http2_connect.erl b/src/gun_tls_proxy_http2_connect.erl index 70b4824..97cbcd7 100644 --- a/src/gun_tls_proxy_http2_connect.erl +++ b/src/gun_tls_proxy_http2_connect.erl @@ -50,7 +50,7 @@ connect(_, _, _, _) -> error(not_implemented). -spec send(socket(), iodata()) -> ok. -send(S=#{gun_pid := GunPid, reply_to := ReplyTo, stream_ref := DataStreamRef, +send(#{gun_pid := GunPid, reply_to := ReplyTo, stream_ref := DataStreamRef, handle_continue_stream_ref := StreamRef}, Data) -> GunPid ! {handle_continue, StreamRef, {data, ReplyTo, DataStreamRef, nofin, Data}}, ok. |