Lines Matching +full:ipv6 +full:- +full:single +full:- +full:target
15 1.2 Multiple methods in a single WWW-Authenticate: header
18 1.5 Expect-100 meets 417
41 3.3 POP3 expects "CRLF.CRLF" eob for some single-line responses
45 4.1 -J and -O with %-encoded file names
46 4.2 -J with -C - fails
47 4.3 --retry and transfer timeouts
48 4.4 Improve --data-urlencode space encoding
52 5.2 curl-config --libs contains private details
55 5.5 can't handle Unicode arguments in non-Unicode builds on Windows
60 5.11 configure --with-gssapi with Heimdal is ignored on macOS
68 6.6 libcurl can fail to try alternatives with --proxy-any
69 6.7 Don't clear digest for single realm
99 11.3 c-ares deviates from stock resolver on http://1346569778
100 11.4 HTTP test server 'connection-monitor' problems
103 11.7 signal-based resolver timeouts
106 11.10 Blocking socket operations in non-blocking API
107 11.11 A shared connection cache is not thread-safe
108 11.12 'no_proxy' string-matches IPv6 numerical addreses
116 13.1 --interface for ipv6 binds to unusable IP address
125 1.2 Multiple methods in a single WWW-Authenticate: header
127 The HTTP responses headers WWW-Authenticate: can provide information about
129 within a single header. The latter way, several methods in the same physical
148 https://tools.ietf.org/html/draft-reschke-rfc2231-in-http-02
150 1.5 Expect-100 meets 417
152 If an upload using Expect: 100-continue receives an HTTP 417 response, it
155 https://curl.haxx.se/mail/archive-2008-02/0043.html
160 waiting for the 100-continue response.
161 https://curl.haxx.se/mail/lib-2008-08/0462.html
229 server-specified DNs, the OpenSSL and GnuTLS backends behave differently.
236 Since libcurl 7.57.0, the flag CURL_GLOBAL_SSL is a no-op. The change was
248 C) libcurl uses some TLS backend functionality even for non-TLS functions (to
278 The GnuTLS `backend->cred` and the OpenSSL `backend->ctx` data and their
280 stored in the Curl_easy handle instead of in per connection so that a single
308 3.3 POP3 expects "CRLF.CRLF" eob for some single-line responses
316 Specifying "--login-options AUTH=PLAIN" on the command line doesn't seem to
323 4.1 -J and -O with %-encoded file names
325 -J/--remote-header-name doesn't decode %-encoded file names. RFC6266 details
333 -O also doesn't decode %-encoded names, and while it has even less
334 information about the charset involved the process is similar to the -J case.
336 Note that we won't add decoding to -O without the user asking for it with
337 some other means as well, since -O has always been documented to use the name
340 4.2 -J with -C - fails
342 When using -J (with -O), automatically resumed downloading together with "-C
343 -" fails. Without -J the same command line works! This happens because the
344 resume logic is worked out before the target file name (and thus its
345 pre-transfer size) has been figured out!
348 4.3 --retry and transfer timeouts
350 If using --retry and the transfer timeouts (possibly due to using -m or
351 -y/-Y) the next attempt doesn't resume the transfer properly from what was
354 https://curl.haxx.se/mail/lib-2008-01/0080.html and Mandriva bug report
357 4.4 Improve --data-urlencode space encoding
359 ASCII space characters in --data-urlencode are currently encoded as %20
374 5.2 curl-config --libs contains private details
376 "curl-config --libs" will include details set in LDFLAGS when configure is
377 run that might be needed only for building libcurl. Further, curl-config
378 --cflags suffers from the same effects with CFLAGS/CPPFLAGS.
389 loader - on all modern systems.
406 5.5 can't handle Unicode arguments in non-Unicode builds on Windows
410 UTF-16 encoding for Unicode and stores it in wide characters, however curl
412 _UNICODE and UNICODE defined. And, except for Cygwin, Windows can't use UTF-8
424 - use of correct soname for the shared library build
426 - support for several TLS backends are missing
428 - the unit tests cause link failures in regular non-static builds
430 - no nghttp2 check
432 - unusable tool_hugehelp.c with MinGW, see
440 - support for zlib and nghttp2
441 - use of static runtime libraries
442 - add the test suite components
446 - support for other development IDEs
447 - add PATH environment variables for third-party DLLs
451 When the configure script checks for third-party libraries, it adds those
470 5.11 configure --with-gssapi with Heimdal is ignored on macOS
472 ... unless you also pass --with-gssapi-libs
483 https://curl.haxx.se/mail/lib-2009-10/0024.html
487 https://curl.haxx.se/mail/lib-2012-07/0073.html
498 "system context" will make it use wrong(?) user name - at least when compared
504 V5 in the e-mail protocols, you need to provide a (fake) user name (this
507 conn->bits.user_passwd in url.c https://curl.haxx.se/bug/view.cgi?id=440 How?
508 https://curl.haxx.se/mail/lib-2004-08/0182.html A possible solution is to
510 new conn->bits.want_authentication which is set when any of the authentication
517 6.6 libcurl can fail to try alternatives with --proxy-any
519 When connecting via a proxy using --proxy-any, a failure to establish an
522 --proxy-any against a proxy which advertise Negotiate and NTLM, but which
528 6.7 Don't clear digest for single realm
534 RTSP authentication broke in 7.66.0. A work-around is to enable RTSP in
547 connection timeout during that phase but only the "real" timeout - which may
564 https://curl.haxx.se/mail/lib-2008-07/0295.html
580 the standard 8-bit NVT-ASCII representation (see the Telnet
616 alive even in this situation - but the current code doesn't. Fixing this would
658 prematurely. There is a half-baked (busy-looping) patch provided in the bug
659 report but it cannot be accepted as-is. See
693 If you ask libcurl to resolve a hostname like example.com to IPv6 addresses
698 11.3 c-ares deviates from stock resolver on http://1346569778
705 but with c-ares it instead says "Could not resolve: 1346569778 (Domain name
710 11.4 HTTP test server 'connection-monitor' problems
712 The 'connection-monitor' feature of the sws HTTP test server doesn't work
728 both ipv4 and ipv6 and try to connect to both happy eyeballs-style. Something
729 in there does however make it take 200 milliseconds to succeed - which is the
734 happy eyeballs delay timeout for IPv6 (related: hardcode the "localhost"
739 11.7 signal-based resolver timeouts
745 non-portable and could cause problems on some platforms. A discussion on the
746 problem is available at https://curl.haxx.se/mail/lib-2008-09/0197.html
759 11.10 Blocking socket operations in non-blocking API
761 The list of blocking socket operations is in TODO section "More non-blocking".
763 11.11 A shared connection cache is not thread-safe
767 still not thread-safe when used shared.
771 11.12 'no_proxy' string-matches IPv6 numerical addreses
792 descriptors for a single easy handle (currently limited to 5).
797 https://curl.haxx.se/mail/lib-2016-01/0101.html
812 13.1 --interface for ipv6 binds to unusable IP address
814 Since IPv6 provides a lot of addresses with different scope, binding to an
815 IPv6 address needs to take the proper care so that it doesn't bind to a