aboutsummaryrefslogtreecommitdiffstats
path: root/src/gun.erl
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2020-10-03 20:34:50 +0200
committerLoïc Hoguin <[email protected]>2020-10-03 21:03:28 +0200
commit563560e157aa767e655896ff7c2858587a436629 (patch)
tree85814460e46fb46cde93879296e7d79fde0f1ddc /src/gun.erl
parent37bf8c409ae341fdebdc062a33cd7fce7ac1f5b5 (diff)
downloadgun-563560e157aa767e655896ff7c2858587a436629.tar.gz
gun-563560e157aa767e655896ff7c2858587a436629.tar.bz2
gun-563560e157aa767e655896ff7c2858587a436629.zip
Fix Dialyzer warnings
Diffstat (limited to 'src/gun.erl')
-rw-r--r--src/gun.erl20
1 files changed, 16 insertions, 4 deletions
diff --git a/src/gun.erl b/src/gun.erl
index 839f665..047aa18 100644
--- a/src/gun.erl
+++ b/src/gun.erl
@@ -191,7 +191,10 @@
}.
-export_type([tunnel_info/0]).
--type raw_opts() :: #{}.
+-type raw_opts() :: #{
+ %% Internal.
+ tunnel_transport => tcp | tls
+}.
-export_type([raw_opts/0]).
%% @todo When/if HTTP/2 CONNECT gets implemented, we will want an option here
@@ -210,7 +213,10 @@
flow => pos_integer(),
keepalive => timeout(),
transform_header_name => fun((binary()) -> binary()),
- version => 'HTTP/1.1' | 'HTTP/1.0'
+ version => 'HTTP/1.1' | 'HTTP/1.0',
+
+ %% Internal.
+ tunnel_transport => tcp | tls
}.
-export_type([http_opts/0]).
@@ -237,7 +243,10 @@
preface_timeout => timeout(),
settings_timeout => timeout(),
stream_window_margin_size => 0..16#7fffffff,
- stream_window_update_threshold => 0..16#7fffffff
+ stream_window_update_threshold => 0..16#7fffffff,
+
+ %% Internal.
+ tunnel_transport => tcp | tls
}.
-export_type([http2_opts/0]).
@@ -249,7 +258,10 @@
protocols => protocols(),
transport => tcp | tls,
tls_opts => [ssl:tls_client_option()],
- tls_handshake_timeout => timeout()
+ tls_handshake_timeout => timeout(),
+
+ %% Internal.
+ tunnel_transport => tcp | tls
}.
-export_type([socks_opts/0]).