trusty seems faster, try again
[m6w6/ext-http] / BUGS
1 Known Issues
2 ============
3
4 Windows:
5 If you keep getting "SSL connect error" when trying to issue
6 requests, try another (newer) libeay32.dll/ssleay32.dll pair.
7
8 Internals:
9 Inflating raw deflated data causes a re-initialization of the inflate
10 stream where the corresponding window bits are modified to tell libz
11 to not check for zlib header bytes. This is not preventable AFAICS.
12 LFS dependant parts of libcurl are left out because of off_t,
13 respectively off64_t confusion.
14 Persistent handles and "cookiestore" request option do interfere,
15 as libcurl saves the cookies to the file on curl_easy_destroy(),
16 cookies are not saved until the CURL handle will be recycled.
17 Thus one would either need to
18 * run PHP with raphf.persistent_handles.limit = 0
19 * call raphf\persistent_handles_clean() every request
20 * call $client->flushCookies(), which is available
21 since libcurl v7.17.1 and does not work with the
22 procedural API
23 HTTP and Proxy authentication information (username/password) can not be
24 unset with NULL prior libcurl v7.19.6 and separate options for setting
25 username and password--which work--are only available since v7.19.6.