summaryrefslogtreecommitdiffstats
path: root/library
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2017-05-09 11:31:14 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2017-05-09 11:31:14 (GMT)
commit53c066e2314b0166a9fe30fd1f0026bb48f0d1f3 (patch)
treeeb92d86e032a361abb2782b43ab1d28c100ba968 /library
parent162004aac0ba129446958a4148b2d7c308d433b2 (diff)
parent4ba2d9a81ad7f1d8b015c4f3f1dd0e6f603ecc3b (diff)
downloadtcl-53c066e2314b0166a9fe30fd1f0026bb48f0d1f3.zip
tcl-53c066e2314b0166a9fe30fd1f0026bb48f0d1f3.tar.gz
tcl-53c066e2314b0166a9fe30fd1f0026bb48f0d1f3.tar.bz2
merge core-8-6-branch
Diffstat (limited to 'library')
-rw-r--r--library/http/http.tcl9
-rw-r--r--library/http/pkgIndex.tcl2
2 files changed, 6 insertions, 5 deletions
diff --git a/library/http/http.tcl b/library/http/http.tcl
index 03751a3..d950441 100644
--- a/library/http/http.tcl
+++ b/library/http/http.tcl
@@ -11,7 +11,7 @@
package require Tcl 8.6-
# Keep this in sync with pkgIndex.tcl and with the install directories in
# Makefiles
-package provide http 2.8.10
+package provide http 2.8.11
namespace eval http {
# Allow resourcing to not clobber existing data
@@ -206,9 +206,10 @@ proc http::Finish {token {errormsg ""} {skipCB 0}} {
set state(error) [list $errormsg $errorInfo $errorCode]
set state(status) "error"
}
- if {
- ($state(status) eq "timeout") || ($state(status) eq "error") ||
- ([info exists state(connection)] && ($state(connection) eq "close"))
+ if { ($state(status) eq "timeout")
+ || ($state(status) eq "error")
+ || ([info exists state(-keepalive)] && !$state(-keepalive))
+ || ([info exists state(connection)] && ($state(connection) eq "close"))
} {
CloseSocket $state(sock) $token
}
diff --git a/library/http/pkgIndex.tcl b/library/http/pkgIndex.tcl
index 841b4eb..a0d28f1 100644
--- a/library/http/pkgIndex.tcl
+++ b/library/http/pkgIndex.tcl
@@ -1,2 +1,2 @@
if {![package vsatisfies [package provide Tcl] 8.6-]} {return}
-package ifneeded http 2.8.10 [list tclPkgSetup $dir http 2.8.10 {{http.tcl source {::http::config ::http::formatQuery ::http::geturl ::http::reset ::http::wait ::http::register ::http::unregister ::http::mapReply}}}]
+package ifneeded http 2.8.11 [list tclPkgSetup $dir http 2.8.11 {{http.tcl source {::http::config ::http::formatQuery ::http::geturl ::http::reset ::http::wait ::http::register ::http::unregister ::http::mapReply}}}]