Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-05-04 | mprintf: allow %.s with data not being zero terminated | Daniel Stenberg | |
If the precision is indeed shorter than the string, don't strlen() to find the end because that's not how the precision operator works. I also added a unit test for curl_msnprintf to make sure this works and that the fix doesn't a few other basic use cases. I found a POSIX compliance problem that I marked TODO in the unit test, and I figure we need to add more tests in the future. Reported-by: Török Edwin | |||
2014-05-01 | test585: Fixed NULL pointer dereference in fopen | Dan Fandrich | |
2014-04-28 | copyright: Updated following recent edits | Steve Holme | |
2014-04-29 | runtests.pl: Improved the check for a crash during torture tests | Dan Fandrich | |
2014-04-29 | Added a few more const where possible | Dan Fandrich | |
2014-04-28 | unit1395: Fixed null pointer dereference on torture test | Dan Fandrich | |
2014-04-23 | test325: verify --proto-redir https=>http | Daniel Stenberg | |
2014-04-22 | tests: Fixed torture test for tests 1526 & 1527 | Dan Fandrich | |
2014-04-22 | sockfilt.c: clean up threaded approach and add documentation | Marc Hoersken | |
2014-04-22 | sockfilt.c: zero initialize variable | Marc Hoersken | |
2014-04-22 | sockfilt.c: fixed getting stuck waiting for MinGW stdin pipe | Marc Hoersken | |
2014-04-20 | sockfilt.c: properly handle disk files, pipes and character input | Marc Hoersken | |
2014-04-20 | sockfilt.c: ignore non-key-events and continue waiting for input | Marc Hoersken | |
2014-04-20 | sockfilt.c: free memory in case of memory allocation errors | Marc Hoersken | |
2014-04-18 | test810: Updated to use new IMAP URL query string functionality | Steve Holme | |
2014-04-06 | tests: Disabled DIGEST-MD5 tests when running with SSPI enabled | Steve Holme | |
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 | 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 | 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 | tests: Added SMTP with credientials test when not supported by server | 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-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 | 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 | |