Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | |
2014-03-29 | ftpserver.pl: Updated argument code in STATUS_imap() to be more meaningful | Steve Holme | |
2014-03-29 | ftpserver.pl: Introduced common method for getting a test's reply data | Steve Holme | |
2014-03-28 | smtp: Fixed login denied when server doesn't support AUTH capability | Steve Holme | |
Specifying user credentials when the SMTP server doesn't support authentication would cause curl to display "No known authentication mechanisms supported!" and return CURLE_LOGIN_DENIED. Reported-by: Tom Sparrow Bug: http://curl.haxx.se/mail/lib-2014-03/0173.html | |||
2014-03-28 | winbuild: added warnless.c to fix build | Cody Mack | |
2014-03-26 | hostcheck: added a system include to define struct in_addr | Dan Fandrich | |
2014-03-26 | test1397: Fixed compilation with some SSL backends | Dan Fandrich | |
The test is only valid when one of four SSL backends is in use, and must otherwise return success. | |||
2014-03-26 | test815/816: Use authentication for both URLs | Dan Fandrich | |
The improved connection reuse logic would otherwise create a new connection for each one, which isn't supported by the test server, nor expected by the test. | |||
2014-03-26 | mkhelp: generate code for --disable-manual as well | Daniel Stenberg | |
This allows configure --disable-manual to run and build without having to regenerate the src/tool_hugehelp.c file which otherwise is necessary since we ship tarballs with that file present. Reported-by: Remi Gacogne Bug: http://curl.haxx.se/bug/view.cgi?id=1350 | |||
2014-03-26 | bump: start the 7.37.0 race | Daniel Stenberg | |
2014-03-26 | RELEASE-NOTES: 7.36.0 | Daniel Stenberg | |
2014-03-25 | test1397: unit test for certificate name wildcard handling | Richard J. Moore | |
2014-03-25 | Curl_cert_hostcheck: strip trailing dots in host name and wildcard | Daniel Stenberg | |
Reported-by: Richard Moore | |||
2014-03-25 | Curl_cert_hostcheck: reject IP address wildcard matches | Daniel Stenberg | |
There are server certificates used with IP address in the CN field, but we MUST not allow wild cart certs for hostnames given as IP addresses only. Therefore we must make Curl_cert_hostcheck() fail such attempts. Bug: http://curl.haxx.se/docs/adv_20140326B.html Reported-by: Richard Moore | |||
2014-03-25 | url: Fixed connection re-use when using different log-in credentials | Steve Holme | |
In addition to FTP, other connection based protocols such as IMAP, POP3, SMTP, SCP, SFTP and LDAP require a new connection when different log-in credentials are specified. Fixed the detection logic to include these other protocols. Bug: http://curl.haxx.se/docs/adv_20140326A.html | |||
2014-03-25 | THANKS: 14 new friends from the 7.36.0 announcement | Daniel Stenberg | |
2014-03-25 | RELEASE-NOTES: synced with 3ebfaf6a0399b6a | Daniel Stenberg | |
2014-03-23 | tool_operate: Fixed uninitialised variable under some error situations | Steve Holme | |
For example when a URL is not specified or the headers file fails to open. | |||
2014-03-22 | tool_parsecfg: Reworked error handling from commit fc59a9e1 | Steve Holme | |
2014-03-22 | tool_getparam: Removed "dead assignment" code introduced in commit 1a9b58fc | Steve Holme | |
2014-03-22 | polarssl: avoid extra newlines in debug messages | Gisle Vanem | |
The debug messages printed inside PolarSSL always seems to end with a newline. So 'infof()' should not add one. Besides the trace 'line' should be 'const'. | |||
2014-03-20 | rtsp: parse "Session:" header properly | Daniel Stenberg | |
The parser skipped the initial letter, which presumably often is whitespace but doesn't have to be. Reported-by: Mike Hasselberg Bug: http://curl.haxx.se/mail/lib-2014-03/0134.html |