aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2010-03-15Added changelog entries for version 0.4.2.release-0-4-2Andreas Schneider1-0/+15
2010-03-15Increase version number to 0.4.2.Andreas Schneider3-6/+4
2010-03-13Fixed a memory leak in ssh_try_publickey_from_file.Andreas Schneider1-0/+4
2010-03-13Added missing SSH_OPTIONS_FD option.Andreas Schneider1-0/+9
2010-03-13Remove support for SSHv1 Cipher variable.Andreas Schneider1-2/+0
2010-03-06Fixed and added support for several identity files.Andreas Schneider8-189/+396
2010-03-06Rename ssh_list_add to ssh_list_append.Andreas Schneider3-3/+3
2010-03-06Added a prepend function for ssh_list.Andreas Schneider2-0/+20
2010-03-06renamed ssh_list_get_head to ssh_list_pop_headAris Adamantiadis4-12/+15
2010-03-02Fixed sftp_parse_longname() on Windows.Andreas Schneider1-2/+12
There is no strndup function on Windows.
2010-03-01Fix a race condition bug in ssh_scp_close()Aris Adamantiadis1-1/+11
2010-03-01Send back replies to openssh's keepalivesAris Adamantiadis1-0/+9
2010-02-26Fixed documentation in scp codeAris Adamantiadis1-1/+19
2010-02-24Added printout of owner and group in the sftp example.Andreas Schneider1-1/+3
2010-02-24Fixed longname parsing, this only workings with readdir.Andreas Schneider1-12/+13
2010-02-23Added owner and group information in sftp attributes.Andreas Schneider2-4/+56
Parse the longname which is the output of 'ls -l' and set the owner and group if we are talking to an openssh server.
2010-02-13Don't add the tests directory to the build.release-0-4-1Andreas Schneider1-1/+0
2010-02-13Added ChangeLog entries for 0.4.1.Andreas Schneider1-0/+14
2010-02-13Set CFLAGS correctly.Andreas Schneider1-7/+7
2010-02-12Fix compilation of opensolarisAris Adamantiadis1-0/+2
2010-02-11Try zlib compression and fallback to none if not available.Andreas Schneider1-2/+2
2010-02-11Use closesocket in server.c for win32Aris Adamantiadis1-0/+4
Resolves #56
2010-02-09aes128-ctr aes192-ctr aes256-ctr for libgcryptAris Adamantiadis2-8/+51
2010-02-09aes192-ctr and aes256-ctr working on libcryptoAris Adamantiadis2-2/+25
2010-02-09Added aes128-ctr support for libcrypto (openssl)Aris Adamantiadis1-0/+28
2010-02-09KEX bug: client preference should be prioritaryAris Adamantiadis1-15/+15
2010-02-07Respect known_hosts file set by the user.Andreas Schneider1-3/+5
Thanks to contact@leblanc-simon.eu for the patch.
2010-02-01The ssh_message object needs to be freed after processing in channel_accept().Vic Lee1-1/+4
Signed-off-by: Vic Lee <llyzs@163.com> Signed-off-by: Andreas Schneider <mail@cynapses.org>
2010-01-29Increased version number.Andreas Schneider3-4/+6
2010-01-29Fix underflow when leave_function() are unbalancedAris Adamantiadis2-2/+1
2010-01-29In handle_channel_request_open(), variable type is freed too early and cause ↵Vic Lee1-1/+5
memory corruptions. Signed-off-by: Vic Lee <llyzs@163.com> Signed-off-by: Andreas Schneider <mail@cynapses.org>
2009-12-23File handle need to be closed in case of errors in privatekey_from_fileVic Lee1-0/+2
Signed-off-by: Vic Lee <llyzs@163.com> Signed-off-by: Andreas Schneider <mail@cynapses.org>
2009-12-22Added an example for exec.Andreas Schneider2-0/+69
2009-12-22Added private key type detection feature in privatekey_from_fileVic Lee1-5/+29
Signed-off-by: Vic Lee <llyzs@163.com> Signed-off-by: Andreas Schneider <mail@cynapses.org>
2009-12-21Fixed ssh_get_user_home_dir() to be thread safe.Andreas Schneider1-4/+11
2009-12-19Improved doxygen output of ssh_options_set().Andreas Schneider1-61/+64
2009-12-18Disabled caller graphs as they are only of internal interest.Andreas Schneider1-1/+1
2009-12-18Updated the doxygen file.Andreas Schneider1-159/+64
2009-12-18Fixed documentation of buffer struct.Andreas Schneider1-2/+1
2009-12-18Fixed documentation of ssh_options_copy().Andreas Schneider1-2/+4
2009-12-18Moved the doxygen mainpage to doc/mainpage.doxAndreas Schneider2-12/+12
2009-12-18Added a mainpage to doxygen.Andreas Schneider1-0/+12
2009-12-18Fixed the doxygen documentation.Andreas Schneider1-0/+10
2009-12-10Update version to 0.4.0.release-0-4-0Andreas Schneider2-3/+3
2009-12-10Don't install crypto.h which is an internal header file.Andreas Schneider1-1/+0
2009-12-09Remove socklen_t definition.Andreas Schneider1-3/+0
Tthe problem is that winsock2.h defines socklen_t as a typedef, not as a define, so depending on the order of includes you can get errors in ws2tcpip.h with msvc.
2009-12-02Fix stupid bug which stops log_verbosity workingAris Adamantiadis1-0/+1
2009-12-02Fixed indent.Andreas Schneider1-2/+2
2009-12-02Added gettimeofday for Windows.Andreas Schneider3-0/+23
Thanks to Patrick Spendrin.
2009-12-02Fixed uint* to work on Windows.Andreas Schneider3-21/+25
Thanks to Patrick Spendrin.