Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-06-12 | * Updates for the latest version of libssh2, specifically | James Housley | |
libssh2_sftp_shutdown() and libssh2_session_free() can now return LIBSSH2_ERROR_EAGAIN. * Fix the _send() and _recv() return values so non-blocking works | |||
2007-06-12 | While connect and transfer works fine in non-blocking mode for the test | James Housley | |
suite, transfer fails in the real world. So after connect set to blocking as full non-blocking is migrated out. | |||
2007-06-12 | mention James current work on ssh | Daniel Stenberg | |
2007-06-12 | Prevent the state machine from getting stuck in SSH_AUTH_HOST_INIT | James Housley | |
2007-06-12 | Convert Curl_ssh_connect() to run in a state machine for | James Housley | |
LIBSSH2_APINO >= 200706012030. More to come... | |||
2007-06-12 | remove unused field in the state struct | Daniel Stenberg | |
2007-06-11 | Wait longer for servers to start up since the ssh server needs to generate | Dan Fandrich | |
keys the first time (which can take a while on a slow or loaded host). Enforce a longer startup wait time for the ssh client SOCKS server, too. Check for an error code from startnew() when starting any server. | |||
2007-06-11 | We do not use RSA keys in the test suite. | Dan Fandrich | |
2007-06-11 | restore the correct timeout time that my previous commit broke | Daniel Stenberg | |
2007-06-11 | Properly wait for the c-ares resolve to complete, hopefully the cure for | Daniel Stenberg | |
bug #1733955 | |||
2007-06-11 | Daniel Black's clarfication about the NTLM support | Daniel Stenberg | |
2007-06-11 | constify 'hostname' in init_thread_sync_data(). Simply clear | Gisle Vanem | |
the whole 'tsd' structure on exit in destroy_thread_sync_data(). | |||
2007-06-11 | Squelsh some warnings for libssh older than 0.1.5. | Gisle Vanem | |
2007-06-08 | Fixed the test harness so that it actually kills the ssh being used as | Dan Fandrich | |
the SOCKS server. | |||
2007-06-08 | Improved compatibility with perl 5.0 on the 'open' calls. | Dan Fandrich | |
2007-06-08 | Incorporated Daniel Black's test706 and test707 SOCKS test cases. | Dan Fandrich | |
2007-06-08 | Improved compatibility with perl 5.0 on the 'open' calls. | Dan Fandrich | |
2007-06-08 | Curl_scp_done() needs to call libssh2_channel_free() to prevent a | James Housley | |
memory leak, and it is the right thing to do. | |||
2007-06-08 | Fix to work with the latest CVS version of libssh2 | James Housley | |
* As of (LIBSSH2_APINO >= 200706012030) there are not *nb() functions * As of (LIBSSH2_APINO >= 200706012030) most libssh2_*() functions can return LIBSSH2_ERROR_EAGAIN to indicate that the call would block. To make the code work as previously, blocking, all the code has been updated so that when (LIBSSH2_APINO >= 200706012030) it loops simulating blocking. This allows the existing code to function and not hold up the upcoming release. | |||
2007-06-08 | start working on 1.4.1 | Daniel Stenberg | |
2007-06-08 | 1.4.0 preps | Daniel Stenberg | |
2007-06-07 | Changed the opens to work on older versions of perl. | Dan Fandrich | |
Redirect ssh output to ssh.log | |||
2007-06-07 | Fixed a compiler warning on uClibc. | Dan Fandrich | |
2007-06-07 | bug #1720605, There seems to be a problem when connecting to the Microsoft ↵ | Daniel Stenberg | |
telnet server | |||
2007-06-07 | Daniel S (6 June 2007) | Daniel Stenberg | |
- -s/--silent can now be used to toggle off the silence again if used a second time. Daniel S (5 June 2007) - Added Daniel Black's work that adds the first few SOCKS test cases. I also fixed two minor SOCKS problems to make the test cases run fine. | |||
2007-06-07 | Renamed the sshd log file to sshd.log. | Dan Fandrich | |
Added more options to the ssh config file to improve the consistency of the test environment. Force a rewrite of the ssh config files on every invocation. Changed the opens to work on older versions of perl. | |||
2007-06-07 | Cleaned up SOCKS tests. Use a magic port number instead of killserver | Dan Fandrich | |
to do nonlistening server tests, like other tests. | |||
2007-06-07 | Fixed some problems in starting SSH for use in SOCKS. | Dan Fandrich | |
2007-06-06 | make -s/--silent properly toggle as it is documented | Daniel Stenberg | |
2007-06-05 | the revert | Daniel Stenberg | |
2007-06-05 | added 703: a socks5 version of 702 | Daniel Stenberg | |
2007-06-05 | Daniel Black's test suite fixes and initial test cases for SOCKS4/5 using | Daniel Stenberg | |
openssh | |||
2007-06-05 | if we read zero bytes from the proxy, the connection is broken and we need | Daniel Stenberg | |
to bail out | |||
2007-06-05 | mark connect failures as non-connected when ConnectPlease() fails, like when | Daniel Stenberg | |
a connection through a socks proxy doesn't work | |||
2007-06-04 | Revered Ashish Sharma's multiple entries patch, as it caused memory madness | Daniel Stenberg | |
2007-06-04 | minor edit since getting an ID seems pointless when failure happens | Daniel Stenberg | |
2007-06-04 | fix the bad bad bad mess this caused on name resolves returning more than | Daniel Stenberg | |
one name... Reported by James Bursa | |||
2007-06-02 | Brad Spencer found and fixed three flaws in the code, found with the new | Daniel Stenberg | |
gcc 4.2.0 warning: -Waddress | |||
2007-06-02 | Brad House fixed VS2005 compiler warnings due to time_t being 64bit. | Daniel Stenberg | |
He also made recent Microsoft compilers use _strdup() instead of strdup(). | |||
2007-06-02 | Ashish Sharma provided a patch for supporting multiple entries in the | Daniel Stenberg | |
/etc/hosts file. Patch edited for coding style and functionality by me (Daniel). | |||
2007-06-02 | ares_destroy_options() and ares_save_options() man pages by Brad House | Daniel Stenberg | |
2007-06-01 | ouch, two conditionals were turned backwards! | Daniel Stenberg | |
2007-06-01 | do the update timer stuff even when CURLM_CALL_MULTI_PERFORM is returned | Daniel Stenberg | |
2007-05-31 | When transferring 500 downloads in parallel with a c-ares enabled build only | Daniel Stenberg | |
to find that it crashed miserably, and this was due to some select()isms left in the code. This was due to API restrictions in c-ares 1.3.x, but with the upcoming c-ares 1.4.0 this is no longer the case so now libcurl runs much better with c-ares and the multi interface with > 1024 file descriptors in use. | |||
2007-05-31 | Feng Tu made (lib)curl support "upload" resuming work for file:// URLs. | Daniel Stenberg | |
2007-05-30 | make next version 1.4.0 | Daniel Stenberg | |
2007-05-30 | first take at detecting a random device and seeding the random key using data | Daniel Stenberg | |
from it in randomize_key() | |||
2007-05-30 | Shmulik Regev brought cryptographically secure transaction IDs | Daniel Stenberg | |
2007-05-30 | Brad House added ares_save_options() and ares_destroy_options() that can be | Daniel Stenberg | |
used to keep options for later re-usal when ares_init_options() is used. | |||
2007-05-30 | Added CURLMOPT_MAXCONNECTS which is a curl_multi_setopt() option for setting | Daniel Stenberg | |
the maximum size of the connection cache maximum size of the multi handle. |