diff --git a/README b/README index aa05522..b0e2a7e 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -$Id: README,v 1.15 2008/03/27 01:35:49 chandrusf Exp $ +$Id: README,v 1.16 2008/05/21 15:28:11 chandrusf Exp $ ibrowse is a HTTP client. The following are a list of features. - RFC2616 compliant (AFAIK) @@ -22,6 +22,10 @@ Comments to : Chandrashekhar.Mullaparthi@t-mobile.co.uk CONTRIBUTIONS & CHANGE HISTORY ============================== +21-05-2008 - * Fixed bug in reading some options from the ibrowse.conf file. + Reported by Erik Reitsma on the erlyaws mailing list + * Fixed bug when cleaning up closing connections + 27-03-2008 - * Major rewrite of the load balancing feature. Additional module, ibrowse_lb.erl, introduced to achieve this. * Can now get a handle to a connection process which is not part of diff --git a/doc/ibrowse.html b/doc/ibrowse.html index 301dd47..ff286e0 100644 --- a/doc/ibrowse.html +++ b/doc/ibrowse.html @@ -181,10 +181,13 @@ send_req/4, send_req/5, send_req/6.
send_req(Url, Headers, Method::method(), Body::body()) -> response() -
Same as send_req/3. - If a list is specified for the body it has to be a flat list.
+ If a list is specified for the body it has to be a flat list. The body can also be a fun/0 or a fun/1.Fun() = {ok, Data} | eof
Fun(State) = {ok, Data} | {ok, Data, NewState} | eof
Generated by EDoc, Mar 27 2008, 01:03:49.
+Generated by EDoc, Mar 27 2008, 01:20:55.