Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-03-29 | proxy multi auth fix, --proxy-anyauth, ftp-ssl and ftp response reading fix | Daniel Stenberg | |
2005-03-29 | postpone these | Daniel Stenberg | |
2005-03-29 | When doing FTP-SSL, advance to the next state properly when the response to | Daniel Stenberg | |
AUTH has been received successfully. | |||
2005-03-29 | Fixed the FTP response reader function to properly deal with responses split | Daniel Stenberg | |
up in several chunks when read. | |||
2005-03-29 | Made the server send data to the control/data connections using two dedicated | Daniel Stenberg | |
functions. This enabled me to add a function that automatically delays between each byte, to proper test curl's ability to read FTP server responses sent in many (small) chunks. See also upcoming libcurl fixes... | |||
2005-03-28 | Based on Augustus Saunders' comments and findings, the HTTP output auth | Daniel Stenberg | |
function was fixed to use the proper proxy authentication when multiple ones were added as accepted. test 239 and test 243 were added to repeat the problems and verify the fixes. | |||
2005-03-28 | Added --proxy-anyauth | Daniel Stenberg | |
2005-03-28 | modified some log outputs, added comment about auth required as used in | Daniel Stenberg | |
test 154 | |||
2005-03-22 | can you spell copy and paste error for me loud and clear? ;-P | Daniel Stenberg | |
2005-03-22 | provide HTML and PDF versions of the man pages in the dist archive | Daniel Stenberg | |
2005-03-22 | When cross-compiling, we do some better checking for the NI_WITHSCOPEID ↵ | Daniel Stenberg | |
option instead of just assuming it is present. | |||
2005-03-22 | CURL_EXTERN is already in <curl/curl.h>. | Gisle Vanem | |
2005-03-22 | Prevent redefinition warning with CURLDEBUG. | Gisle Vanem | |
2005-03-22 | moved out the changes from 2004 to CHANGES.2004 | Daniel Stenberg | |
2005-03-22 | Fixed typo. | Dan Fandrich | |
2005-03-21 | the same fix here too, typecast to prevent win32 compiler warning | Daniel Stenberg | |
2005-03-21 | typecase to fix win32 compiler warning (and intended as other code is) | Daniel Stenberg | |
2005-03-21 | Modified the VALID_SOCK() macro to become VERIFY_SOCK() instead. It is slighly | Daniel Stenberg | |
more involved, but should hopefully not generate any compiler warnings on win32 systems (that can't check the socket based on the numeric). | |||
2005-03-21 | Make NTLM tests depend on the NTLM feature at not SSL, since the NTLM support | Daniel Stenberg | |
is no longer only present when built with SSL support. | |||
2005-03-21 | format mistake | Daniel Stenberg | |
2005-03-20 | removed a (fairly useless) debug output just to compile without warning | Daniel Stenberg | |
2005-03-20 | silence win32 compiler warnings | Daniel Stenberg | |
2005-03-20 | attempt to fix the ares link breakage with --enable-debug in libcurl and here | Daniel Stenberg | |
2005-03-19 | silence warnings on win32 about static functions that are never used | Daniel Stenberg | |
2005-03-19 | some additional debug output | Daniel Stenberg | |
2005-03-19 | fix compiler warning | Daniel Stenberg | |
2005-03-18 | Fixed spelling of --runtestopts | Dan Fandrich | |
2005-03-18 | Netware builds don't use configure. | Dan Fandrich | |
2005-03-18 | fix by Kyrre Kristiansen | Daniel Stenberg | |
2005-03-18 | adjust to use plain 'make' even for cross-compiles if using configure- | Daniel Stenberg | |
style build | |||
2005-03-18 | a Common Lisp binding | Daniel Stenberg | |
2005-03-17 | Change the bogus address used in test237 to be more reliable when run | Dan Fandrich | |
on a host with a buggy resolver that strips all but the bottom 8 bits of each octet. The resolved address in this case (192.0.2.127) is guaranteed never to belong to a real host (see RFC3330). | |||
2005-03-17 | Use the proper macro to do uClibc detection. | Dan Fandrich | |
2005-03-17 | include inet_pton.h | Daniel Stenberg | |
2005-03-17 | added descriptions | Daniel Stenberg | |
2005-03-17 | update year | Daniel Stenberg | |
2005-03-17 | don't set TEST_F to blank when --runtestopts isn't used, as that will override | Daniel Stenberg | |
the default options set in the Makefile | |||
2005-03-17 | support multiple error codes for a test case since some things just vary | Daniel Stenberg | |
between platforms | |||
2005-03-17 | add 'FTP ASCII transfers' here, since they seem to be frequently attempted | Daniel Stenberg | |
these days...! | |||
2005-03-17 | add new option | Daniel Stenberg | |
2005-03-17 | add new file | Daniel Stenberg | |
2005-03-17 | its a start | Daniel Stenberg | |
2005-03-17 | use Curl_inet_pton(), not inet_pton(). | Daniel Stenberg | |
2005-03-17 | Added the --runtestsopts option to testcurl.pl to override the default | Dan Fandrich | |
options used by runtests.pl during testing (useful for disabling valgrind). | |||
2005-03-16 | Removed references to config-vms.h from the makefiles. | Dan Fandrich | |
2005-03-16 | Removed old VMS config files (on behalf of Marty Kuhrt). The VMS build | Dan Fandrich | |
scripts use the version in packages/vms/ | |||
2005-03-16 | more | Daniel Stenberg | |
2005-03-16 | check for the HTTPS server in a manner similar to how we check for the HTTP | Daniel Stenberg | |
server | |||
2005-03-16 | - Tru64 and some IRIX boxes seem to not like test 237 as it is. Their | Daniel Stenberg | |
inet_addr() functions seems to use &255 on all numericals in a ipv4 dotted address which makes a different failure... Now I've modified the ipv4 resolve code to use inet_pton() instead in an attempt to make these systems better detect this as a bad IP address rather than creating a toally bogus address that is then passed on and used. | |||
2005-03-16 | Fixed some compiler warnings I should have noticed before. | Dan Fandrich | |