diff options
Diffstat (limited to 'src/gun_http3.erl')
-rw-r--r-- | src/gun_http3.erl | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/gun_http3.erl b/src/gun_http3.erl index 92b2118..49930c7 100644 --- a/src/gun_http3.erl +++ b/src/gun_http3.erl @@ -31,7 +31,7 @@ -export([headers/12]). -export([request/13]). -export([data/7]). --export([connect/9]). +-export([connect/10]). -export([cancel/5]). -export([timeout/3]). -export([stream_info/2]). @@ -637,10 +637,11 @@ data(State=#http3_state{conn=Conn, transport=Transport}, StreamRef, _ReplyTo, Is % {[], EvHandlerState} end. --spec connect(_, _, _, _, _, _, _, _, _) -> no_return(). +-spec connect(_, _, _, _, _, _, _, _, _, _) -> no_return(). connect(_State, StreamRef, _ReplyTo, _Destination, _TunnelInfo, _Headers0, - _InitialFlow0, _EvHandler, _EvHandlerState0) when is_reference(StreamRef) -> + _InitialFlow0, _CookieStore, _EvHandler, _EvHandlerState0) + when is_reference(StreamRef) -> error(unimplemented). -spec cancel(_, _, _, _, _) -> no_return(). |