aboutsummaryrefslogtreecommitdiffstats
path: root/lib/inets/src/http_client/httpc_manager.erl
diff options
context:
space:
mode:
authorMicael Karlberg <[email protected]>2011-12-01 12:27:45 +0100
committerMicael Karlberg <[email protected]>2011-12-01 12:27:45 +0100
commit38bb19c5c4bdeeb4d54a62d687d9371eb7976c3f (patch)
tree230fc0054d2394885a2512017649b769b8ea26ad /lib/inets/src/http_client/httpc_manager.erl
parent3cf5f67f3545cc82147706cc83febc242f6e469a (diff)
parent5df28c6c7d3c5948ff02ae197f1f11eff96cc68d (diff)
downloadotp-38bb19c5c4bdeeb4d54a62d687d9371eb7976c3f.tar.gz
otp-38bb19c5c4bdeeb4d54a62d687d9371eb7976c3f.tar.bz2
otp-38bb19c5c4bdeeb4d54a62d687d9371eb7976c3f.zip
Merge branch 'bmk/inets/inets58_integration2'
Diffstat (limited to 'lib/inets/src/http_client/httpc_manager.erl')
-rw-r--r--lib/inets/src/http_client/httpc_manager.erl6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/inets/src/http_client/httpc_manager.erl b/lib/inets/src/http_client/httpc_manager.erl
index ab575d867e..a97cbb83f1 100644
--- a/lib/inets/src/http_client/httpc_manager.erl
+++ b/lib/inets/src/http_client/httpc_manager.erl
@@ -37,7 +37,7 @@
delete_session/2,
set_options/2,
store_cookies/3,
- which_cookies/1, which_cookies/2,
+ which_cookies/1, which_cookies/2, which_cookies/3,
reset_cookies/1,
session_type/1,
info/1
@@ -271,9 +271,11 @@ reset_cookies(ProfileName) ->
which_cookies(ProfileName) when is_atom(ProfileName) ->
call(ProfileName, which_cookies).
+
which_cookies(Url, ProfileName)
when is_list(Url) andalso is_atom(ProfileName) ->
- call(ProfileName, {which_cookies, Url, []}).
+ which_cookies(Url, [], ProfileName).
+
which_cookies(Url, Options, ProfileName)
when is_list(Url) andalso is_list(Options) andalso is_atom(ProfileName) ->
call(ProfileName, {which_cookies, Url, Options}).