summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorsandeep <sandeep>2000-04-05 00:30:14 (GMT)
committersandeep <sandeep>2000-04-05 00:30:14 (GMT)
commit3cffb6ec71805a501fb2b5958a3d336f9630b2b8 (patch)
tree3faf2184d6c4e2b2c62352c9c3012e1db4d8166c /ChangeLog
parent654b797828a64252043684a8896212e371fbb59d (diff)
downloadtcl-3cffb6ec71805a501fb2b5958a3d336f9630b2b8.zip
tcl-3cffb6ec71805a501fb2b5958a3d336f9630b2b8.tar.gz
tcl-3cffb6ec71805a501fb2b5958a3d336f9630b2b8.tar.bz2
2000-03-29 Sandeep Tamhankar <sandeep@scriptics.com>
* library/http2.1/http.tcl: For the -querychannel option, fconfigure the socket to be binary so that we don't translate anything while reading the data. This is because we determine the content length of the data on the channel by using seek (to the end of the file) and tell on the file handle, and we need the content-length to match the amount of data actually sent, and translation can affect the number of bytes posted.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog9
1 files changed, 9 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 5e72a53..d783e67 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2000-03-29 Sandeep Tamhankar <sandeep@scriptics.com>
+
+ * library/http2.1/http.tcl: For the -querychannel option,
+ fconfigure the socket to be binary so that we don't translate
+ anything while reading the data. This is because we determine the
+ content length of the data on the channel by using seek (to the end
+ of the file) and tell on the file handle, and we need the
+ content-length to match the amount of data actually sent, and
+ translation can affect the number of bytes posted.
2000-04-03 Andreas Kupries <a.kupries@westend.com>