summaryrefslogtreecommitdiff
path: root/www/webcopy
diff options
context:
space:
mode:
authorAkinori MUSHA <knu@FreeBSD.org>2000-05-21 11:31:02 +0000
committerAkinori MUSHA <knu@FreeBSD.org>2000-05-21 11:31:02 +0000
commit7b302a5887d51342f725ce346ac45495e13583d8 (patch)
tree3bb9ea3d913e10c3f76e4c82b28dd772dd001500 /www/webcopy
parentUpgrade to MM (Shared Memory Library), version 1.1.2 (diff)
Add a patch to make it send a "Host:" header for HTTP/1.1 virtual hosts.
Notes
Notes: svn path=/head/; revision=28646
Diffstat (limited to 'www/webcopy')
-rw-r--r--www/webcopy/files/patch-af20
1 files changed, 20 insertions, 0 deletions
diff --git a/www/webcopy/files/patch-af b/www/webcopy/files/patch-af
new file mode 100644
index 000000000000..008c84356d2a
--- /dev/null
+++ b/www/webcopy/files/patch-af
@@ -0,0 +1,20 @@
+--- webcopy.src.orig Sun May 21 20:24:21 2000
++++ webcopy.src Sun May 21 20:25:51 2000
+@@ -481,7 +481,7 @@
+ $_=select(S); $|=1; select($_);
+ if ($verbose>3) {
+ print(($post?"POST":"GET") . " $proxy$url HTTP/1.0${rn}" .
+- "User-Agent: $agent${rn}Accept: */*${rn}$update");
++ "User-Agent: $agent${rn}Accept: */*${rn}Host: ${host}${rn}$update");
+ print "Authorization: $userpass${rn}" if $userpass;
+ if ($post) {
+ print "Content-Length: " . length($post_data) .
+@@ -492,7 +492,7 @@
+ }
+ }
+ print S ($post?"POST":"GET") . " $proxy$url HTTP/1.0${rn}" .
+- "User-Agent: $agent${rn}Accept: */*${rn}$update";
++ "User-Agent: $agent${rn}Accept: */*${rn}Host: ${host}${rn}$update";
+ print S "Authorization: $userpass${rn}" if $userpass;
+ if ($post) {
+ print S "Content-Length: " . length($post_data) .