Update of /cvsroot/jungerl/jungerl/lib/ibrowse
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv3680
Modified Files:
README vsn.mk
Log Message:
29-07-2009 - * The ETS table created for load balancing of requests was not
being deleted which led to the node not being able to create
any more ETS tables if queries were made to many number of
webservers. ibrowse now deletes the ETS table it creates once the
last connection to a webserver is dropped.
Reported by Seth Falcon.
* Spurious data being returned at end of body in certain cases of
chunked encoded responses from the server.
Reported by Chris Newcombe.
Index: README
===================================================================
RCS file: /cvsroot/jungerl/jungerl/lib/ibrowse/README,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- README 7 Jul 2009 22:30:57 -0000 1.18
+++ README 29 Jul 2009 18:03:21 -0000 1.19
@@ -18,12 +18,22 @@
Comments to : Chandrashekhar.Mullaparthi@...
-Version : 1.5.1
+Version : 1.5.2
Latest version : git://github.com/cmullaparthi/ibrowse.git
CONTRIBUTIONS & CHANGE HISTORY
==============================
+29-07-2009 - * The ETS table created for load balancing of requests was not
+ being deleted which led to the node not being able to create
+ any more ETS tables if queries were made to many number of
+ webservers. ibrowse now deletes the ETS table it creates once the
+ last connection to a webserver is dropped.
+ Reported by Seth Falcon.
+ * Spurious data being returned at end of body in certain cases of
+ chunked encoded responses from the server.
+ Reported by Chris Newcombe.
+
03-07-2009 - Added option {stream_to, {Pid, once}} which allows the caller
to control when it wants to receive more data. If this option
is used, the call ibrowse:stream_next(Req_id) should be used
Index: vsn.mk
===================================================================
RCS file: /cvsroot/jungerl/jungerl/lib/ibrowse/vsn.mk,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- vsn.mk 7 Jul 2009 22:30:57 -0000 1.16
+++ vsn.mk 29 Jul 2009 18:03:21 -0000 1.17
@@ -1,2 +1,2 @@
-IBROWSE_VSN = 1.5.1
+IBROWSE_VSN = 1.5.2
|