aboutsummaryrefslogtreecommitdiff
path: root/tests/data/Makefile.am
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2007-09-26 12:44:59 +0000
committerDaniel Stenberg <daniel@haxx.se>2007-09-26 12:44:59 +0000
commitfd4cf78f36e89b8a0913e4fb34fd7a89f5c0cfd4 (patch)
treec4a2dfb16d9985c715a6f4b2a6dfbe7edd2dc1c4 /tests/data/Makefile.am
parenta6315359d742bdf967ba3ee1db3e0b7e5a3956fe (diff)
Philip Langdale provided the new CURLOPT_POST301 option for
curl_easy_setopt() that alters how libcurl functions when following redirects. It makes libcurl obey the RFC2616 when a 301 response is received after a non-GET request is made. Default libcurl behaviour is to change method to GET in the subsequent request (like it does for response code 302 - because that's what many/most browsers do), but with this CURLOPT_POST301 option enabled it will do what the spec says and do the next request using the same method again. I.e keep POST after 301. The curl tool got this option as --post301 Test case 1011 and 1012 were added to verify.
Diffstat (limited to 'tests/data/Makefile.am')
-rw-r--r--tests/data/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/data/Makefile.am b/tests/data/Makefile.am
index 260d17b27..22ddb7f2c 100644
--- a/tests/data/Makefile.am
+++ b/tests/data/Makefile.am
@@ -44,4 +44,4 @@ EXTRA_DIST = test1 test108 test117 test127 test20 test27 test34 test46 \
test409 test613 test614 test700 test701 test702 test704 test705 test703 \
test706 test707 test350 test351 test352 test353 test289 test540 test354 \
test231 test1000 test1001 test1002 test1003 test1004 test1005 test1006 \
- test615 test1007 test541 test1010
+ test615 test1007 test541 test1010 test1011 test1012