aboutsummaryrefslogtreecommitdiff
path: root/libssh
AgeCommit message (Collapse)AuthorFilesLines
2010-05-31Fix unclean null termination in ~ expendingAris Adamantiadis1-1/+1
2010-05-31misc: Move size check down in ssh_path_expand_escape().Andreas Schneider2-6/+7
2010-05-30misc: Make sure the expanded string is null-terminated.Andreas Schneider1-0/+1
2010-05-28session: Fixed setting up default identity files.Andreas Schneider1-3/+3
2010-05-21options: Make sure that we have always have default options set.Andreas Schneider2-11/+9
2010-05-21options: Set the local username if still not set.Andreas Schneider1-0/+7
2010-05-21keyfiles: Fixed possible problem with known_hosts path.Andreas Schneider1-1/+1
2010-05-19Fixed keyboard-interactive and unit testAris Adamantiadis1-60/+56
2010-05-17sftp: Fixed sftp_chown.Andreas Schneider1-1/+2
2010-05-17Fix sftp_rename on sftp3Aris Adamantiadis1-2/+3
2010-05-17poll: Added a cleanup function to free the ws2_32 library.Andreas Schneider3-1/+24
2010-05-14Separation work between openssl and libgcryptAris Adamantiadis4-796/+874
2010-05-14Sanitize libssh namespace + legacy wrappersAris Adamantiadis28-1173/+1409
2010-05-12connect: Fixed signedness warnings from MSVC.Andreas Schneider1-5/+6
2010-05-12win: Added missing includes with newer MSCV.Andreas Schneider4-2/+31
2010-05-12connect: Don't shadow errno.Andreas Schneider1-6/+6
2010-05-12connect: Make sure that we use float values for the status.Andreas Schneider1-7/+7
2010-05-12proxycommand: check the return values of pipe().Andreas Schneider1-2/+11
2010-05-12Fixed building libssh with DEBUG_CRYPTO.Andreas Schneider2-0/+2
2010-05-12Added runtime detection of WSAPoll().Andreas Schneider2-8/+32
Signed-off-by: Andreas Schneider <mail@cynapses.org>
2010-05-12Fixed linking errors on Windows.Andreas Schneider2-2/+4
2010-05-12Fixed build of ssh_lowercase and ssh_hostport on Windows.Andreas Schneider1-64/+63
2010-05-12Fixed windows include files in pcap support.Andreas Schneider1-1/+3
2010-05-12Fixed Windows build warnings.Andreas Schneider3-2/+16
2010-05-11Use the new expand functions.Andreas Schneider4-102/+101
2010-05-11Added a function to expand an escaped string.Andreas Schneider1-0/+84
2010-05-11Added a function to expand the tilde from a path.Andreas Schneider1-0/+60
2010-05-10Fix style in ssh_poll_ctx_dopollAris Adamantiadis1-19/+26
Also do a rescan of polled events when a poll object has been deleted.
2010-05-10Fix options copyAris Adamantiadis1-0/+5
2010-05-10make compression not mandatory in options_getoptAris Adamantiadis1-2/+2
2010-05-10Some grammarnazi things + fix int->socket_tAris Adamantiadis1-2/+2
2010-05-10Fix crash in testcase proxycommandAris Adamantiadis1-3/+8
2010-05-09Fix doc and actually make the test run :)Aris Adamantiadis3-5/+17
2010-05-09ssh_socket support for 2 fd + Proxyhost commandAris Adamantiadis7-82/+237
2010-05-02Forgot the pki filesAris Adamantiadis1-0/+113
2010-05-01Added pki.[ch] files as a new standard API for PKsAris Adamantiadis3-8/+12
Right now it's just a wrapper to the existing calls but soon it's gona be the effective implementation and other calls will be wrappers.
2010-05-01Match hashed [host]:port format knownhostsAris Adamantiadis1-0/+3
2010-05-01knownhosts writing and unit testAris Adamantiadis1-10/+29
2010-05-01First implementation of known_hosts with port readAris Adamantiadis2-3/+24
2010-04-28Fix uninitialized variable usedAris Adamantiadis1-0/+4
2010-04-28Fix warnings found with clang analyzerAris Adamantiadis4-6/+25
2010-04-28Fix bugs found by clang analyzerAris Adamantiadis3-16/+16
2010-04-28Fixed warnings with clangAris Adamantiadis2-2/+2
2010-04-28Fix doc and libgcrypt buildAris Adamantiadis2-5/+6
2010-04-28Renamed private type TYPE_RSA to SSH_KEYTYPE_*Aris Adamantiadis5-51/+51
Also made this enum public
2010-04-28Added ssh_privatekey_type public functionAris Adamantiadis1-0/+14
2010-04-27Added first unittest-based bug found :)Aris Adamantiadis1-0/+2
2010-04-24Do not send twice ssh_userauth_none requestsAris Adamantiadis1-1/+6
Thanks to Xi Wang for the bug report
2010-04-24Fixes \r in SSH1 bannerAris Adamantiadis1-2/+2
Thanks to Xi Wang for the patch WARNING: this may cause backward compatibility issues with SSH1, revert if there are problems
2010-04-24Fixes infinite loopsAris Adamantiadis2-4/+7
Thanks to Xi Wang for the patches