| Commit message (Collapse) | Author | Age | Files | Lines |
|\
| |
| |
| |
| | |
* PHP-5.5:
Revert unintentional docblock change
|
| |\
| | |
| | |
| | |
| | | |
* PHP-5.4:
Revert unintentional docblock change
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Revert unintentional docblock change
It looks like commit dd8e59da8f5aafd9d77a0f1f17e5e272d09f643f
introduced an unintended docbloc change. I have reverted this
change in this commit.
|
| | |
| | |
| | |
| | |
| | | |
Conflicts:
ext/curl/interface.c
|
|\ \ \
| |/ /
| | |
| | |
| | |
| | |
| | | |
* PHP-5.5:
update NEWS
Add a test for bug #67643 (curl_multi_getcontent returns '' when RETURNTRANSFER isn't set)
Fixed bug #67643 (curl_multi_getcontent returns '' when CURLOPT_RETURNTRANSFER isn't set)
|
| | |
| | |
| | |
| | | |
RETURNTRANSFER isn't set)
|
| | |
| | |
| | |
| | | |
CURLOPT_RETURNTRANSFER isn't set)
|
|\ \ \
| |/ /
| | |
| | |
| | | |
* PHP-5.5:
Test PHP Init Fail Without Params
|
| |\ \
| | | |
| | | |
| | | |
| | | | |
* pull-request/863:
Test PHP Init Fail Without Params
|
| | | | |
|
|\ \ \ \
| |/ / /
| | | |
| | | |
| | | | |
* PHP-5.5:
fix dir separator in test
|
| | | | |
|
|\ \ \ \
| |/ / /
| | | |
| | | |
| | | | |
* PHP-5.5:
TLS 1.0, 1.1 and 1.2 Curl constants - bug #68247
|
| | | | |
|
|\ \ \ \
| |/ / /
| | | |
| | | |
| | | | |
* PHP-5.5:
Fix return code (merges are hard :( )
|
| | | | |
|
| |/ /
| | |
| | |
| | |
| | | |
Conflicts:
ext/curl/interface.c
|
| | |
| | |
| | |
| | |
| | | |
Conflicts:
ext/curl/interface.c
|
|\ \ \
| |/ /
| | |
| | |
| | | |
* PHP-5.5:
reflect in the test that GSS-Negotiate is deprecated since libcurl 7.38.0
|
| | | |
|
|\ \ \
| |/ /
| | |
| | |
| | |
| | |
| | |
| | | |
* PHP-5.5:
fix test - output can be chunked
Conflicts:
ext/curl/tests/curl_basic_006.phpt
|
| |\ \
| | |/
| | |
| | |
| | | |
* PHP-5.4:
fix test - output can be chunked
|
| | | |
|
| | | |
|
|\ \ \
| |/ /
| | |
| | |
| | | |
* PHP-5.5:
improve CURL tests to allow testing without separate server
|
| | | |
|
|\ \ \
| |/ /
| | |
| | |
| | | |
* PHP-5.5:
fix test locality inconsitency
|
| | | |
|
|\ \ \
| |/ /
| | |
| | |
| | | |
* PHP-5.5:
fix bug #64247 (CURLOPT_INFILE doesn't allow reset)
|
| | | |
|
|\ \ \
| |/ /
| | |
| | |
| | | |
* PHP-5.5:
Fix #66562: Consistency bug where curl_multi_getcontent behaves different from curl_exec
|
| |\ \
| | |/
| | |
| | |
| | | |
* PHP-5.4:
Fix #66562: Consistency bug where curl_multi_getcontent behaves different from curl_exec
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
from curl_exec
curl_exec returns an empty string when data is received from a domain that returns zero content. curl_multi_getcontent
returned null. Now it returns an empty string fixing the incosistency
|
|\ \ \
| |/ / |
|
| | | |
|
|\ \ \
| |/ /
| | |
| | |
| | | |
* PHP-5.5:
don't compare constants on run time
|
| | | |
|
|\ \ \
| |/ /
| | |
| | |
| | |
| | | |
* 5.5:
Fixed expected output of a few cURL test cases
Allow NULL as value for CURLOPT_CUSTOMREQUEST option.
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Added test case.
Refactored the code to isolate the string handling. Fixed return values to use SUCCESS and FAILURE.
Removed unused error variable.
Indentation fix.
Removed the ugly goto.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
These options don't do anything and they never have.
Refs:
http://curl.haxx.se/libcurl/c/curl_easy_setopt.html#CURLOPTCLOSEPOLICY
http://curl.haxx.se/mail/lib-2006-11/0301.html
|
| | | |
|
|\ \ \
| |/ /
| | |
| | |
| | | |
* PHP-5.5:
adapt test to curl 7.35.0 upgrade
|
| |\ \
| | |/
| | |
| | |
| | | |
* PHP-5.4:
adapt test to curl 7.35.0 upgrade
|
| | |
| | |
| | |
| | |
| | | |
which is a security one and should be performed as in
http://curl.haxx.se/docs/adv_20140129.html
|
| | | |
|
| | |
| | |
| | |
| | | |
[-Wunused-but-set-variable]"
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Newer versions of libcurl prevent file:// location response headers by default,
which means that the open_basedir check is unnecessary — the fact
CURLOPT_REDIR_PROTOCOLS can't set CURLPROTO_FILE with open_basedir enabled
means that there's no possibility of breaching the open_basedir restriction,
and this allows HTTP redirects to be followed automatically.
Implements FR #65646 (re-enable CURLOPT_FOLLOWLOCATION with open_basedir or
safe_mode).
|