History log of /PHP-8.2/ext/curl/interface.c (Results 326 – 350 of 615)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
# a666285b 01-Jan-2013 Xinchen Hui

Happy New Year

# 0a7395e0 01-Jan-2013 Xinchen Hui

Happy New Year

# 722b8fb8 28-Dec-2012 Pierrick Charron

Add new curl options

Addes new curl options CURLOPT_TELNETOPTIONS, CURLOPT_GSSAPI_DELEGATION,
CURLOPT_ACCEPTTIMEOUT_MS, CURLOPT_SSL_OPTIONS, CURLOPT_TCP_KEEPALIVE,
CURLOPT_TCP_KEEPID

Add new curl options

Addes new curl options CURLOPT_TELNETOPTIONS, CURLOPT_GSSAPI_DELEGATION,
CURLOPT_ACCEPTTIMEOUT_MS, CURLOPT_SSL_OPTIONS, CURLOPT_TCP_KEEPALIVE,
CURLOPT_TCP_KEEPIDLE and CURLOPT_TCP_KEEPINTVL.

show more ...

# 8b67981b 27-Dec-2012 Pierrick Charron

Merge branch 'PHP-5.4' into PHP-5.5

* PHP-5.4:
Fixed #63859 Memory leak when reusing curl-handle


# ac3d227e 27-Dec-2012 Pierrick Charron

Fixed #63859 Memory leak when reusing curl-handle

When CURLOPT_POSTFIELDS is called more than once on the same
curl handle, php/curl did not free the memory of the previous
post data

Fixed #63859 Memory leak when reusing curl-handle

When CURLOPT_POSTFIELDS is called more than once on the same
curl handle, php/curl did not free the memory of the previous
post data. This commit will fix the problem unless the curl
handle was previously duplicated using the curl_copy_handle()
function in which case we can not know if the post data is
still in use or not by any curl handle

show more ...

# 33f44af1 23-Dec-2012 Pierrick Charron

New curl_pause() function

Add the curl_pause function (binding of curl_easy_pause).
Using this function, you can explicitly mark a running connection
to get paused, and you can unpau

New curl_pause() function

Add the curl_pause function (binding of curl_easy_pause).
Using this function, you can explicitly mark a running connection
to get paused, and you can unpause a connection that was
previously paused.

show more ...

# 4b4f3db7 23-Dec-2012 Pierrick Charron

Support for curl_strerror and curl_multi_strerror

Add the support for both curl_strerror and curl_multi_strerror.
Those function will return a string describing the error code
passed

Support for curl_strerror and curl_multi_strerror

Add the support for both curl_strerror and curl_multi_strerror.
Those function will return a string describing the error code
passed in the argument errornum

show more ...

# 64595a5d 23-Dec-2012 Pierrick Charron

Add curl_multi_setopt and clean curl_share_setopt

curl_multi_setopt is now available and supports CURLMOPT_PIPELINING
and CURLMOPT_MAXCONNECTS

# ee453541 23-Dec-2012 Pierrick Charron

Merge branch 'PHP-5.4' into PHP-5.5

* PHP-5.4:
Update NEWS file
Fixed segfault due to libcurl connection caching


# b10a3b94 23-Dec-2012 Pierrick Charron

Merge branch 'PHP-5.3' into PHP-5.4

* PHP-5.3:
Fixed segfault due to libcurl connection caching


# a2b6d9c1 23-Dec-2012 Pierrick Charron

Fixed segfault due to libcurl connection caching

Libcurl is doing connection caching. When easy handle is cleaned up,
if the handle was previously used by the curl_multi_api, the connect

Fixed segfault due to libcurl connection caching

Libcurl is doing connection caching. When easy handle is cleaned up,
if the handle was previously used by the curl_multi_api, the connection
remains open un the curl multi handle is cleaned up. Some protocols are
sending content like the FTP one, and libcurl try to use the
WRITEFUNCTION or the HEADERFUNCTION. Since structures used in those
callback are freed, we need to use an other callback to which avoid
segfaults.

Libcurl commit d021f2e8a00 fix this issue and should be part of 7.28.2

show more ...

# e3c88d16 22-Dec-2012 Pierrick Charron

Merge branch 'PHP-5.4' into PHP-5.5

* PHP-5.4:
Update NEWS file
Fixed bug #63352 (Can't enable hostname validation when using curl stream wrappers)
CURL >= 7.28.0 no longer

Merge branch 'PHP-5.4' into PHP-5.5

* PHP-5.4:
Update NEWS file
Fixed bug #63352 (Can't enable hostname validation when using curl stream wrappers)
CURL >= 7.28.0 no longer support value 1 for CURLOPT_SSL_VERIFYHOST)

show more ...


# 5499c7d2 22-Dec-2012 Pierrick Charron

Merge branch 'PHP-5.3' into PHP-5.4

* PHP-5.3:
Update NEWS file
Fixed bug #63352 (Can't enable hostname validation when using curl stream wrappers)
CURL >= 7.28.0 no longer

Merge branch 'PHP-5.3' into PHP-5.4

* PHP-5.3:
Update NEWS file
Fixed bug #63352 (Can't enable hostname validation when using curl stream wrappers)
CURL >= 7.28.0 no longer support value 1 for CURLOPT_SSL_VERIFYHOST)

Conflicts:
ext/curl/interface.c
ext/curl/tests/bug63363.phpt

show more ...


# 517f8002 22-Dec-2012 Pierrick Charron

CURL >= 7.28.0 no longer support value 1 for CURLOPT_SSL_VERIFYHOST)

Fixed bug #63795

Revision tags: php-5.3.20, php-5.4.10, php-5.5.0alpha2, php-5.3.20RC1, php-5.4.10RC1, php-5.3.19, php-5.4.9
# 6b0299aa 21-Nov-2012 Xinchen Hui

Merge branch 'PHP-5.4' into PHP-5.5


# e54970aa 21-Nov-2012 Xinchen Hui

Unused variable copystr

copystr is declared again blow

Revision tags: php-5.5.0alpha1, php-5.3.19RC1, php-5.4.9RC1
# f68f31f1 25-Oct-2012 John Jawed (JJ)

Notice if CURLOPT_SSL_VERIFYHOST is set to true

# 3b85d09d 25-Oct-2012 John Jawed (JJ)

Notice if CURLOPT_SSL_VERIFYHOST is set to true

Revision tags: php-5.3.18, php-5.4.8, php-5.3.18RC1, php-5.4.8RC1
# 70713a27 22-Sep-2012 Pierrick Charron

Add CURLOPT_READDATA which was removed by mistake

I did a check and this is the only one which was removed by mistake.
No other constants are available in 5.4 branch and not in master

Revision tags: php-5.3.17, php-5.4.7, php-5.4.7RC1
# dd9478e6 27-Aug-2012 Felipe Pena

- Fixed compiler warnings

# 101fd2d3 26-Aug-2012 Pierrick Charron

Fix bad version for CURLINFO_CERTINFO

CURLINFO_CERTINFO is available since 7.19.1. The cURL extension
allow to use it since this same version but the internal function
create_certinf

Fix bad version for CURLINFO_CERTINFO

CURLINFO_CERTINFO is available since 7.19.1. The cURL extension
allow to use it since this same version but the internal function
create_certinfo used internally for CURLINFO_CERTINFO usage
is only usable for version greater than 7.19.1 which will cause
problem if the user is using the 7.19.1 cURL version

show more ...

# 9ab45d3e 25-Aug-2012 Pierrick Charron

Add missing constants in cURL

# e5ff3f18 24-Aug-2012 Pierrick Charron

Update bad versions for cURL constants

This was updated according to the cURL symbol tables located here :
http://curl.haxx.se/libcurl/c/symbols-in-versions.html

# 4c83ecc7 24-Aug-2012 Pierrick Charron

Fixed bug #62912 (CURLINFO_PRIMARY_IP is not exposed)

CURLINFO_PRIMARY_* and CURLINFO_LOCAL_* where available in curl_getinfo
but the constant itself was not exposed to php userland

# 2118ab9a 16-Aug-2012 Pierrick Charron

Merge branch 'PHP-5.4'

* PHP-5.4:
Fixed bug #62839


1...<<11121314151617181920>>...25