aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2011-02-09poll: Use WSAPoll() on Windows.Andreas Schneider1-1/+3
2011-02-09Revert "poll: Remove obsolete win_poll functions."Andreas Schneider1-0/+8
This reverts commit c950ed3b4c2c9a84ae9e94ffc81eb815249f81cb.
2011-02-09poll: Remove obsolete win_poll functions.Andreas Schneider1-8/+0
Thanks for the hint Milo ;)
2011-02-06session: Added ssh_is_connected().Andreas Schneider1-0/+15
2011-02-05Revert "sftp: Added missing break's to server."Andreas Schneider1-9/+1
This reverts commit 131e3b968ff60b4db71ac4fe02a21e20ccdcd819.
2011-02-05sftp: Added missing break's to server.Andreas Schneider1-1/+9
2011-02-05session: Fixed possible uninitialized return of ret.Andreas Schneider1-1/+1
2011-02-05getpass: Fixed a compiler warning.Andreas Schneider1-1/+3
2011-02-04Respect RFC when sending stderr datamilo1-2/+10
http://tools.ietf.org/html/rfc4254#section-5.2 byte SSH_MSG_CHANNEL_EXTENDED_DATA uint32 recipient channel *uint32 data_type_code* string data
2011-01-26SSH1: Update a few fix from 0.4.8-gitAris Adamantiadis2-3/+5
2011-01-26Getpass: fixed loop + indentationAris Adamantiadis1-3/+3
2011-01-26Getpass: Fix password clearingAris Adamantiadis1-11/+10
2011-01-24getpass: Fixed possible segfault if len is too small.Andreas Schneider1-0/+10
2011-01-24misc: Added multiplatform ssh_getpass() fuction.Andreas Schneider2-0/+266
2011-01-22Fix problem with ssh_connect w/ timeout &fd > 1024Aris Adamantiadis1-13/+16
Convert that code to ssh_poll (cherry picked from commit b1a65dd25f124bd7d78714b016e8c0e05fc7acd2)
2011-01-19Fix use-after-free when socket is closed in a callback handlerAris Adamantiadis1-2/+15
2011-01-16Fix doxygen warningAris Adamantiadis1-0/+2
2011-01-16ssh_auth_password made nonblockingAris Adamantiadis1-3/+41
2011-01-16Made ssh_userauth_none nonblockingAris Adamantiadis1-5/+51
2011-01-16Made ask_userauth nonblockingAris Adamantiadis1-4/+11
2011-01-15Fix double-connect testcaseAris Adamantiadis2-1/+71
2011-01-12Use termination functions for event pollingAris Adamantiadis2-14/+60
2011-01-11Fix getpwuid_r on opensolarisAris Adamantiadis1-7/+7
2011-01-11build: Fixed build on Windows.Andreas Schneider1-1/+2
2011-01-10Non-blocking mode for ssh_connectAris Adamantiadis1-2/+23
This looks ugly. I'll see if we need to revert or change that patch later.
2011-01-10Change blocking parameter to a flagAris Adamantiadis1-3/+13
2011-01-10Fix connection callbacks called at wrong timeAris Adamantiadis2-1/+11
2011-01-10All error path consistent with ssh_packet_kexinitAris Adamantiadis1-4/+6
2011-01-10Log errors with ssh_logAris Adamantiadis1-0/+1
2011-01-09Fix leak when key exchange fails.Aris Adamantiadis1-0/+4
2011-01-06keys: Fixed memory leaks in session signing.Andreas Schneider1-0/+2
Found by cppcheck - http://test.libssh.org/cppcheck-analyzer/
2011-01-06dh: Fixed a memory leak in ssh_print_hexa.Andreas Schneider1-0/+2
Found by cppcheck - http://test.libssh.org/cppcheck-analyzer/
2011-01-06options: Remove unsused getopt option.Andreas Schneider1-5/+1
Found by clang-analyzer http://test.libssh.org/clang-analyzer/
2011-01-06messages: Added missing NULL pointer checks.Andreas Schneider1-2/+2
Found by clang-analyzer http://test.libssh.org/clang-analyzer/
2011-01-04Fix "SSH_KEXINIT received in wrong state" raceAris Adamantiadis1-1/+1
Setting the flag before doing any IO
2011-01-03poll: Ensure that the poll handle and ctx is zeroed.Andreas Schneider1-19/+24
2011-01-02messages: Fixed cast warnings on Windows.Andreas Schneider1-5/+5
2011-01-02base64: Added casts to GET macros to fix build warnings.Andreas Schneider1-3/+3
2011-01-02scp: Fixed a build warning on Windows.Andreas Schneider1-1/+1
2011-01-02poll: Fixed a build warning on Windows.Andreas Schneider1-1/+1
2011-01-02bind: Added include file for close function on Windows.Andreas Schneider1-0/+1
2011-01-01misc: Avoid redefine of _WIN32_IE.Andreas Schneider1-2/+9
2010-12-30threads: Fixed ssh_pthread_thread_id with mingw.Andreas Schneider1-1/+5
2010-12-29server: Added missing include files for getaddrinfo on Windows.Andreas Schneider1-1/+10
2010-12-29connect: Added and improved regex for ip detection.Andreas Schneider1-1/+1
Thanks to Norbert Kiesel, rlo#14.
2010-12-29server: Added include files for getaddrinfo.Andreas Schneider1-2/+14
2010-12-29cmake: Added missing include dirs for libssh.Andreas Schneider1-0/+2
2010-12-29connect: Added missing $ in IPREGEX.Andreas Schneider1-1/+1
Fixes rlo#14.
2010-12-28connect: Use a better IP regex.Andreas Schneider1-1/+3
2010-12-27Added compression options and allow "yes/no" settingAris Adamantiadis4-20/+68
SSH_OPTION_COMPRESSION and SSH_OPTION_COMPRESSION_LEVEL options have been added. Now, end-level apps may simply choose to enable compression without knowing the relevant algorithms behind it.