Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-04-05 | winbuild: Added Visual Studio 2005 (VC8) project files | Steve Holme | |
Added a more thorough version of the VC8 project files that exist in the "vs" folder with the intention to add support for other versions of Visual Studio. These files support side-by-side compilation, 32-bit and 64-bit builds as well as support for some of the third-party libraries curl uses. | |||
2014-04-04 | curl_easy_setopt: fix wrong version number references | Daniel Stenberg | |
2014-04-04 | docs: this is for 7.37.0 | Daniel Stenberg | |
And clarify for curl that --proxy-header now must be used for headers that are meant for a proxy, and they will not be included if the request is not for a proxy. | |||
2014-04-04 | PROXYHEADER: send these headers in "normal" proxy requests too | Daniel Stenberg | |
Updated the docs to clarify and the code accordingly, with test 1528 to verify: When CURLHEADER_SEPARATE is set and libcurl is asked to send a request to a proxy but it isn't CONNECT, then _both_ header lists (CURLOPT_HTTPHEADER and CURLOPT_PROXYHEADER) will be used since the single request is then made for both the proxy and the server. | |||
2014-04-04 | test1428: verify --proxy-header | Daniel Stenberg | |
2014-04-04 | curl.1: documented --proxy-header | Daniel Stenberg | |
2014-04-04 | curl: add --proxy-header | Maciej Puzio | |
2014-04-04 | symbols-in-versions: Added CURLHEADER_* | Daniel Stenberg | |
... and sorted the list | |||
2014-04-04 | CURLOPT_HEADEROPT: added | Daniel Stenberg | |
Modified the logic so that CURLOPT_HEADEROPT now controls if PROXYHEADER is actually used or not. | |||
2014-04-04 | CURLOPT_PROXYHEADER: set headers for proxy-only | Daniel Stenberg | |
Includes docs and new test cases: 1525, 1526 and 1527 Co-written-by: Vijay Panghal | |||
2014-04-04 | HTTP: don't send Content-Length: 0 _and_ Expect: 100-continue | Daniel Stenberg | |
Without request body there's no point in asking for 100-continue. Bug: http://curl.haxx.se/bug/view.cgi?id=1349 Reported-by: JimS | |||
2014-04-03 | ftp: in passive data connect wait for happy eyeballs sockets | Daniel Stenberg | |
When doing passive FTP, the multi state function needs to extract and use the happy eyeballs sockets to wait for to check for completion! Bug: http://curl.haxx.se/mail/lib-2014-02/0135.html (ruined) Reported-by: Alan | |||
2014-04-03 | http2+openssl: fix compiler warnings in ALPN using code | Daniel Stenberg | |
2014-04-03 | tests: unified use of some keywords | Dan Fandrich | |
2014-04-03 | tests: added some missing closing tags | Dan Fandrich | |
2014-04-03 | runtests: insist on a <keywords> section | Daniel Stenberg | |
Since all present tests now have <keywords> listed, this script will now refuse to run a given test case if no such section is provided. Hopefully this will help us make sure new test cases get keywords added at start. | |||
2014-04-03 | tests: add keywords to the last 7 tests lacking them | Daniel Stenberg | |
2014-04-01 | smtp: Fixed login denied with a RFC-821 based server | Steve Holme | |
In addition to commit fe260b75e7 fixed the same issue for RFC-821 based SMTP servers and allow the credientials to be given to curl even though they are not used with the server. | |||
2014-04-01 | tests: Added SMTP with credientials test when not supported by server | Steve Holme | |
2014-04-01 | urldata: spellfix comment | Daniel Stenberg | |
Reported-by: Melissa | |||
2014-03-31 | RELEASE-NOTES: Synced with dd07e79023 | Steve Holme | |
2014-03-31 | tests: Added SMTP with credentials test for RFC-821 based server | Steve Holme | |
Added SMTP (RFC-821 only) based test case as a reference for the fix provided by commit fe260b75e7. | |||
2014-03-31 | ipv6: strip off zone identifiers in redirects too | Daniel Stenberg | |
Follow up to 9317eced984 makes test 1056 work again. | |||
2014-03-31 | docs: Removed mention of -g hack when using IPv6 literals | Dan Fandrich | |
This limitation was removed in commit 0bc4938e | |||
2014-03-31 | http2: let openssl mention the exact protocol negotiated | Daniel Stenberg | |
Remove a superfluous "negotiated http2" info line | |||
2014-03-31 | http2: remove _DRAFT09 from the NPN_HTTP2 enum | Daniel Stenberg | |
We're progressing throught drafts so there's no point in having a fixed one in a symbol that'll survive. | |||
2014-03-31 | URL parser: IPv6 zone identifiers are now supported | Till Maas | |
2014-03-30 | curl: stop interpreting IPv6 literals as glob patterns. | Paul Marks | |
This makes it possible to fetch from an IPv6 literal without specifying the -g option. Globbing remains available elsehwere in the URL. For example: curl http://[::1]/file[1-3].txt This creates no ambiguity, because there is no overlap between the syntax of valid globs and valid IPv6 literals. Globs contain hyphens and at most 1 colon, while IPv6 literals have no hyphens, and at least 2 colons. The peek_ipv6() parser simply whitelists a set of characters and counts colons, because the real validation happens later on. The character set includes A-Z, in case someone decides to implement support for scopes like [fe80::1%25eth0] in the future. Signed-off-by: Paul Marks <pmarks@google.com> | |||
2014-03-30 | test938: Updated to use file input for upload | Steve Holme | |
As the second URL won't be passed input from stdin. | |||
2014-03-30 | test836: Fixed incorrect username in expected output | Steve Holme | |
2014-03-30 | DISABLED: 836, 882 and 938 hang | Daniel Stenberg | |
2014-03-30 | runtests: check protocol before data | Daniel Stenberg | |
When the protocol part fails, the data usually does too but the protocol part is often more fundamental and often provide the clues you need to fix the test case. | |||
2014-03-30 | ftpserver.pl: Extended the full text reply regular expression | Steve Holme | |
Extended the regex to include other valid characters such as those used in the reply text of Test 836. | |||
2014-03-30 | keywords: sort case insensitive | Daniel Stenberg | |
2014-03-30 | tests: remove trailing CRs from keywords | Daniel Stenberg | |
2014-03-30 | keywords: sort keywords alphabetically | Daniel Stenberg | |
2014-03-30 | keywords: don't use STDERR for good info | Daniel Stenberg | |
2014-03-30 | tests: Added email unit tests to verify login credential connection re-use | Steve Holme | |
2014-03-30 | tests: Corrected "APOP" authentication keyword | Steve Holme | |
2014-03-30 | tests: Replaced email authentication keywords with SASL based keywords | Steve Holme | |
As the email protocols implement SASL authentication rather than IMAP, POP3 and SMTP specific authentication, updated the authentication keywords to reflect this. | |||
2014-03-30 | tests: Added "Clear Text" authentication keyword | Steve Holme | |
2014-03-30 | tests: Added "SASL" authentication keyword | Steve Holme | |
2014-03-30 | imap-append.c: Fixed compilation errors on some platforms | Steve Holme | |
In the initializer for len, there is no prototype for "strlen". In this statement, there is no prototype for "memcpy". | |||
2014-03-30 | ftpserver.pl: Removed some unused variables | Steve Holme | |
2014-03-30 | ftpserver.pl: Reworked some variable names to be more meaningful | Steve Holme | |
2014-03-29 | ftpserver.pl: Corrected some indentation in senddata() | Steve Holme | |
2014-03-29 | lib1513: fix callback proto to silence warning | Daniel Stenberg | |
2014-03-29 | ftpserver.pl: Added fallback to <data> support when using multiple URLs | Steve Holme | |
Added support for falling back to <data> when <data1>, <data2>, etc... don't exist in the <reply> section of a unit test. | |||
2014-03-29 | ftpserver.pl: Updated email based get reply data code to use new method | Steve Holme | |
2014-03-29 | ftpserver.pl: Fixed syntax error from commit 3a29ee41 | Steve Holme | |