From 1a809408917db788c679c2a0ee3bdddf86f29e92 Mon Sep 17 00:00:00 2001 From: Joseph Wayne Norton Date: Wed, 24 Oct 2012 17:04:02 +0900 Subject: [PATCH] Add worker_process_options for start and start_link purposes Typically used to specify non-default, garbage collection options. --- src/ibrowse.erl | 55 +++++++++++++++++++++---------------- src/ibrowse_http_client.erl | 12 ++++++-- src/ibrowse_lb.erl | 15 +++++----- 3 files changed, 50 insertions(+), 32 deletions(-) diff --git a/src/ibrowse.erl b/src/ibrowse.erl index 80a4282..40b3f97 100644 --- a/src/ibrowse.erl +++ b/src/ibrowse.erl @@ -175,9 +175,11 @@ send_req(Url, Headers, Method) -> send_req(Url, Headers, Method, Body) -> send_req(Url, Headers, Method, Body, []). -%% @doc Same as send_req/4. -%% For a description of SSL Options, look in the ssl manpage. If the -%% HTTP Version to use is not specified, the default is 1.1. +%% @doc Same as send_req/4. + +%% For a description of SSL Options, look in the ssl manpage. +%% For a description of Process Options, look in the gen_server manpage. +%% If the HTTP Version to use is not specified, the default is 1.1. %%
%%