- Jan 22, 2013
-
-
Steve Holme authored
The most recent version of the SASL RFC is RFC4422 and not RFC2222 as previously documented.
-
Ulion authored
- document the double-quote and backslash need be escaped if quoting. - libcurl formdata escape double-quote in filename by backslash. - curl formparse can parse filename both contains '"' and ',' or ';'. - curl now can uploading file with ',' or ';' in filename. Bug: http://curl.haxx.se/bug/view.cgi?id=1171
-
Daniel Stenberg authored
-
- Jan 21, 2013
-
-
Yang Tse authored
Notes: When running a configure script that has nested packages (for example libcurl's configure with --enable-ares and c-ares sources embedded in curl tree) and AC_CONFIG_SUBDIRS([nested-subdir]) machinery is used to automatically run the nested configure script from within the parent configure script, it happens that the nested _shell_ script will inherit shell variables exported from the parent _shell_ script. If for example parent configure script sets and exports LDFLAGS and LIBS variables with proper values in order to link either a parent library or program with a library which will be configured and built by a nested package; It will happen that when the nested configure script runs, the nested library does not exist yet and _any_ link-test done in the nested configure will fail, such as those that autoconf macros perform in order to detect existing compiler and its characteristics, the result is that the nested configure script will fail with errors such as: configure: error: C compiler cannot create executables For now, we no longer export variables previously exported here. On the other hand, AC_SUBST'ing them is appropriate and even with nested packages each package's config.status gets its own package values. So we reinstate AC_SUBST'ing previously AC_SUBST'ed variables.
-
Daniel Stenberg authored
-
Yang Tse authored
-
- Jan 20, 2013
-
-
Yang Tse authored
-
Yang Tse authored
Fix proper macro expansion order across autotools versions for C compiler and preprocessor program checks.
-
Steve Holme authored
Extended the fix from commit 8b15c84e to additionally exclude pop3_state_apop_resp() if the CURL_DISABLE_CRYPTO_AUTH flag is defined.
-
Yang Tse authored
-
- Jan 19, 2013
-
-
Daniel Stenberg authored
Bug: http://curl.haxx.se/mail/archive-2013-01/0017.html Reported by: Ulrich Doehner
-
Daniel Stenberg authored
Reported by: Craig Davison Bug: http://curl.haxx.se/mail/lib-2013-01/0234.html
-
Daniel Stenberg authored
Reported by: Craig Davison Bug: http://curl.haxx.se/mail/lib-2013-01/0234.html
-
Steve Holme authored
Corrected some function argument definitions to maximize the 80 character line length limit and be in keeping with the curl coding style.
-
- Jan 18, 2013
-
-
Steve Holme authored
Fixed an issue where Curl_ssl_connect_nonblocking() wouldn't complete correctly and the ssldone flag wouldn't be set to true for pop3s based connections. Bug introduced in commit: 4ffb8a63.
-
Daniel Stenberg authored
-
Steve Holme authored
Added missing imap fix as per commit 709b3506.
-
Yang Tse authored
-
- Jan 17, 2013
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
Remove internal separated behavior of the easy vs multi intercace. curl_easy_perform() is now using the multi interface itself. Several minor multi interface quirks and bugs have been fixed in the process. Much help with debugging this has been provided by: Yang Tse
-
Yang Tse authored
Fixes initial proxy response being processed by the tunneled protocol handler instead of the HTTP wrapper handler. This issue would trigger upon delayed CONNECT response from the proxy. Additionally fixes a multi interface code-path in which connections would not time out properly. This does not fix known bug #39. URL: http://curl.haxx.se/mail/lib-2013-01/0191.html
-
- Jan 16, 2013
-
-
Yves Arrouye authored
If the default value for an option taking a long as its value is non zero, and it is set by zero by a command line option, then that command line option is not reflected in --libcurl's output. This is because line 520-521 of tool_setopt.c look like: if(!lval) skip = TRUE; An example of a command-line option doing so is the -k option that sets CURLOPT_SLL_VERIFYPEER and CURLOPT_SSL_VERIFYHOST to 0L, when the defaults are non-zero.
-
- Jan 15, 2013
-
-
Daniel Stenberg authored
-
Yang Tse authored
-
Yang Tse authored
Automake documents that doing this will make it choose a different name for intermediate object files even when sharing source files across targets of same Makefile.am. Up to automake 1.13.1 target's intermediate object files were placed in the build subdirectory of the target. We depended on this, probably undocumented behavior, to achieve same behavior as if a per-target flag had been specified when building targets that actually belong to different Makefile.am files. It seems automake 1.13.2 is going to break behavior mentioned above. So, lets use a documented behavior in order to achieve same purpose, across automake versions, no matter where automake wishes to place intermediate object files. Our build targets that already were using a per-target '_CFLAGS' or '_CPPFLAGS' need no 'fixing', these were already 'fixed'. The only Makefile.am or Makefile.in files in libcurl's source tree touched by this 'fix' are tests/libtest/Makefile.inc and tests/unit/Makefile.inc.
-
Yang Tse authored
-
Yang Tse authored
-
Kamil Dudka authored
Do not use the error messages from NSS for errors not occurring in NSS.
-
- Jan 14, 2013
-
-
Steve Holme authored
-
Yang Tse authored
Tested with: buildconf: autoconf version 2.69 buildconf: autom4te version 2.69 buildconf: autoheader version 2.69 buildconf: automake version 1.13.1 buildconf: aclocal version 1.13.1 buildconf: libtool version 2.4 buildconf: GNU m4 version 1.4.16
-
- Jan 13, 2013
-
-
Daniel Stenberg authored
... and refresh number of lines of code
-
- Jan 12, 2013
-
-
Daniel Stenberg authored
It referred to it by the wrong name and said it returned the wrong value. Reported by: Gisle Vanem
-
- Jan 11, 2013
-
-
Kamil Dudka authored
This commit fixes a regression introduced in 052a08ff. NSS caches certs/keys returned by the SSL_GetClientAuthDataHook callback and if we connect second time to the same server, the cached cert/key pair is used. If we use multiple client certificates for different paths on the same server, we need to clear the session cache to force NSS to call the hook again. The commit 052a08ff prevented the session cache from being cleared if a client certificate from file was used. The condition is now fixed to cover both cases: consssl->client_nickname is not NULL if a client certificate from the NSS database is used and connssl->obj_clicert is not NULL if a client certificate from file is used. Review by: Kai Engert
-
- Jan 10, 2013
-
-
Yang Tse authored
-
Gisle Vanem authored
gcc on DOS hasn't really supported COFF-debug (-gcoff) on djgpp for a long time. "Sounds like the COFF debug info generation has bit-rotted in GCC. Nothing new here, no other platform uses COFF AFAIK." So lets drop it too. URL: http://curl.haxx.se/mail/lib-2013-01/0130.html
-
- Jan 09, 2013
-
-
Yang Tse authored
-
Yang Tse authored
-
Yang Tse authored
-
Yang Tse authored
-
Nick Zitzmann authored
-