History log of /PHP-7.1/ext/curl/interface.c (Results 101 – 125 of 414)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 066ea220 28-May-2014 Dmitry Stogov

Avoid in-place modification


Revision tags: php-5.4.29, php-5.5.13
# 55b6fb16 15-May-2014 Dmitry Stogov

Fixed zend_string/char* mess


Revision tags: php-5.5.13RC1, php-5.6.0beta3, php-5.4.29RC1
# 3ba4f826 13-May-2014 Dmitry Stogov

Fixed curl_close() behavior


# b8b8c497 13-May-2014 Dmitry Stogov

In most user extensions functions like mysql_close() should use zend_list_close() instead of zend_list_delete(). This closes the actual connection and frees extension specific data structures, but do

In most user extensions functions like mysql_close() should use zend_list_close() instead of zend_list_delete(). This closes the actual connection and frees extension specific data structures, but doesn't free zend_reference structure that might be referenced from zval(s). This also doesn't decrement the resource reference counter.

show more ...


# 1071bf74 09-May-2014 Xinchen Hui

Finish ext/curl (7 tests fails as trunk)


# f4c105dc 09-May-2014 Xinchen Hui

Fixed post data (long type cast matters here :<)


# 763cee63 09-May-2014 Xinchen Hui

Use zend_string for better performance


# 2d9bc88d 09-May-2014 Xinchen Hui

Fixed clone refcount


# 564db38d 09-May-2014 Xinchen Hui

Fixed build with high version libcurl


# c5e63f8a 09-May-2014 Xinchen Hui

Refactoring ext/curl (only compilable now)


Revision tags: php-5.6.0beta2
# 54fee595 30-Apr-2014 Michael Wallner

fix bug #64247 (CURLOPT_INFILE doesn't allow reset)


Revision tags: php-5.5.12, php-5.4.28, php-5.4.28RC1, php-5.5.12RC1
# 050d7e38 15-Apr-2014 Dmitry Stogov

Cleanup (1-st round)


Revision tags: php-5.6.0beta1, php-5.4.27, php-5.5.11, php-5.5.11RC1, php-5.4.27RC1
# f8252aa5 11-Mar-2014 Adam Harvey

Fix compile error with theoretically supported versions of libcurl < 7.12.3.


Revision tags: php-5.5.10, php-5.4.26
# 36c44597 28-Feb-2014 Anatol Belski

don't compare constants on run time


Revision tags: php-5.6.0alpha3, php-5.4.26RC1, php-5.5.10RC1, php-5.6.0alpha2, php-5.5.9, php-5.4.25, php-5.5.9RC1, php-5.4.25RC1, php-5.6.0alpha1, php-5.5.8, php-5.4.24, php-5.4.24RC1, php-5.5.8RC1, php-5.5.7, php-5.4.23, php-5.3.28, php-5.5.7RC1, php-5.4.23RC1
# 488e64db 18-Nov-2013 datibbaw

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.

R

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.

show more ...


# afc24da4 26-Feb-2014 Chris Wright

Remove cURL close policy related constants

These options don't do anything and they never have.

Refs:
http://curl.haxx.se/libcurl/c/curl_easy_setopt.html#CURLOPTCLOSEPOLICY

Remove cURL close policy related constants

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

show more ...


# a031dc06 24-Feb-2014 Daniel Lowrey

Add openssl.cafile ini check when loading cainfo


# c081ce62 03-Jan-2014 Xinchen Hui

Bump year


# 47c90277 03-Jan-2014 Xinchen Hui

Bump year


# c0d060f5 03-Jan-2014 Xinchen Hui

Bump year


Revision tags: php-5.4.22, php-5.5.6, php-5.4.22RC1, php-5.5.6RC1, php-5.4.21, php-5.5.5, php-5.4.21RC1, php-5.5.5RC1, php-5.5.4, php-5.4.20
# fba290c0 10-Sep-2013 Adam Harvey

Allow CURLOPT_FOLLOWLOCATION to be used with open_basedir.

Newer versions of libcurl prevent file:// location response headers by default,
which means that the open_basedir check is unne

Allow CURLOPT_FOLLOWLOCATION to be used with open_basedir.

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).

show more ...


Revision tags: php-5.5.4RC1, php-5.4.20RC1
# 54d4a280 21-Aug-2013 Christopher Jones

Suppress compiler warning "warning: variable ‘length’ set but not used [-Wunused-but-set-variable]"


Revision tags: php-5.5.3, php-5.4.19
# d5979c88 20-Aug-2013 Christopher Jones

Reduce (some more) compile noise of 'unused variable' and 'may be used
uninitialized' warnings.


# aa7d3d8e 19-Aug-2013 Adam Harvey

Track created curl_slist structs by option so they can be updated in situ.

At present, when curl_setopt() is called with an option that requires the
creation of a curl_slist, we simply p

Track created curl_slist structs by option so they can be updated in situ.

At present, when curl_setopt() is called with an option that requires the
creation of a curl_slist, we simply push the new curl_slist onto a list to be
freed when the curl handle is freed. This avoids a memory leak, but means that
repeated calls to curl_setopt() on the same handle with the same option wastes
previously allocated memory on curl_slist structs that will no longer be read.

This commit changes the zend_llist that was previously used to track the lists
to a HashTable keyed by the option number, which means that we can simply
update the hash table each time curl_setopt() is called.

Fixes bug #65458 (curl memory leak).

show more ...


Revision tags: php-5.5.2, php-5.4.18, php-5.5.2RC1, php-5.4.18RC2, php-5.5.1, php-5.4.18RC1, php-5.3.27, php-5.4.17
# 623386d7 26-Jun-2013 Felipe Pena

- Fixed typo on condition


12345678910>>...17