summaryrefslogtreecommitdiffstats
path: root/library/http
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2011-09-16 08:28:02 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2011-09-16 08:28:02 (GMT)
commitb70ab023a4e2ec3bfb8ebccf59b92519d5a5dbba (patch)
treee9d9531b410872bc585652d409b21187b47b6198 /library/http
parentc6e44af1862f2818ef3586bf70986d7f75c5ae77 (diff)
downloadtcl-b70ab023a4e2ec3bfb8ebccf59b92519d5a5dbba.zip
tcl-b70ab023a4e2ec3bfb8ebccf59b92519d5a5dbba.tar.gz
tcl-b70ab023a4e2ec3bfb8ebccf59b92519d5a5dbba.tar.bz2
[Bug 3391977]: Ensure that the -headers option to http::geturl overrides the
-type option (important because -type has a default that is not always appropriate, and the header must not be duplicated).
Diffstat (limited to 'library/http')
-rw-r--r--library/http/http.tcl8
1 files changed, 7 insertions, 1 deletions
diff --git a/library/http/http.tcl b/library/http/http.tcl
index aaef2b8..1c2b182 100644
--- a/library/http/http.tcl
+++ b/library/http/http.tcl
@@ -674,6 +674,7 @@ proc http::geturl {url args} {
puts $sock "Proxy-Connection: Keep-Alive"
}
set accept_encoding_seen 0
+ set content_type_seen 0
foreach {key value} $state(-headers) {
if {[string equal -nocase $key "host"]} {
continue
@@ -681,6 +682,9 @@ proc http::geturl {url args} {
if {[string equal -nocase $key "accept-encoding"]} {
set accept_encoding_seen 1
}
+ if {[string equal -nocase $key "content-type"]} {
+ set content_type_seen 1
+ }
set value [string map [list \n "" \r ""] $value]
set key [string trim $key]
if {[string equal -nocase $key "content-length"]} {
@@ -729,7 +733,9 @@ proc http::geturl {url args} {
# response.
if {$isQuery || $isQueryChannel} {
- puts $sock "Content-Type: $state(-type)"
+ if {!$content_type_seen} {
+ puts $sock "Content-Type: $state(-type)"
+ }
if {!$contDone} {
puts $sock "Content-Length: $state(querylength)"
}