diff options
author | sandeep <sandeep> | 2000-03-19 22:32:25 (GMT) |
---|---|---|
committer | sandeep <sandeep> | 2000-03-19 22:32:25 (GMT) |
commit | 442e6551351a2b2547562fcb091d24518900f248 (patch) | |
tree | 13ce9084d6c41a10a178d38efb3ce76757fc4f2d /ChangeLog | |
parent | 467352f3a6c9e72a15442c938d97adf75c80e247 (diff) | |
download | tcl-442e6551351a2b2547562fcb091d24518900f248.zip tcl-442e6551351a2b2547562fcb091d24518900f248.tar.gz tcl-442e6551351a2b2547562fcb091d24518900f248.tar.bz2 |
* library/http2.1/http.tcl: Added -querychannel option and altered
some of Brent's modifications to allow asynchronous posts (via
-command). Also modified -queryprogress so that it calls the
query callback as <callback> <token> <total size> <current size>
to be consistent with -progress. Added -queryblocksize option
with default 8192 bytes for post blocksize. Fixed a bunch of
potential memory leaks for the case when geturl receives bad args
or can't open a socket, etc. Overall, the package really rocks
now.
* doc/http.n: Added -queryblocksize, -querychannel, and
-queryprogress. Also, changed the description of -blocksize,
which states that the -progress callback will be called for each
block, to now qualify that with an "if -progress is specified".
* tests/http.test: Added a querychannel test for synchronous and
asynchronous posts, altered the queryprogress test such that the
callback conforms to the -progress format. Also, had to use the
-queryblocksize option to do the post 16K at a time to match
Brent's expected results (and to test that -queryblocksize works).
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 23 |
1 files changed, 23 insertions, 0 deletions
@@ -1,3 +1,26 @@ +2000-03-19 Sandeep Tamhankar <sandeep@scriptics.com> + + * library/http2.1/http.tcl: Added -querychannel option and altered + some of Brent's modifications to allow asynchronous posts (via + -command). Also modified -queryprogress so that it calls the + query callback as <callback> <token> <total size> <current size> + to be consistent with -progress. Added -queryblocksize option + with default 8192 bytes for post blocksize. Fixed a bunch of + potential memory leaks for the case when geturl receives bad args + or can't open a socket, etc. Overall, the package really rocks + now. + + * doc/http.n: Added -queryblocksize, -querychannel, and + -queryprogress. Also, changed the description of -blocksize, + which states that the -progress callback will be called for each + block, to now qualify that with an "if -progress is specified". + + * tests/http.test: Added a querychannel test for synchronous and + asynchronous posts, altered the queryprogress test such that the + callback conforms to the -progress format. Also, had to use the + -queryblocksize option to do the post 16K at a time to match + Brent's expected results (and to test that -queryblocksize works). + 2000-03-15 Brent Welch <welch@scriptics.com> * library/http2.1/http.tcl: Added -queryprogress callback to |