Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Fix connection callbacks called at wrong time | Aris Adamantiadis | 2011-01-10 | 2 | -1/+11 | |
| | ||||||
* | All error path consistent with ssh_packet_kexinit | Aris Adamantiadis | 2011-01-10 | 1 | -4/+6 | |
| | ||||||
* | Log errors with ssh_log | Aris Adamantiadis | 2011-01-10 | 1 | -0/+1 | |
| | ||||||
* | Fix leak when key exchange fails. | Aris Adamantiadis | 2011-01-09 | 1 | -0/+4 | |
| | ||||||
* | examples: Improve the authenticate_kbdint function. | Andreas Schneider | 2011-01-08 | 2 | -37/+64 | |
| | | | | | The function excepts a predefined password now. It will try to use it if the prompt is a Password prompt. This works in 80% of the cases. | |||||
* | Added interesting link | Aris Adamantiadis | 2011-01-07 | 1 | -0/+3 | |
| | ||||||
* | keys: Fixed memory leaks in session signing. | Andreas Schneider | 2011-01-06 | 1 | -0/+2 | |
| | | | | Found by cppcheck - http://test.libssh.org/cppcheck-analyzer/ | |||||
* | dh: Fixed a memory leak in ssh_print_hexa. | Andreas Schneider | 2011-01-06 | 1 | -0/+2 | |
| | | | | Found by cppcheck - http://test.libssh.org/cppcheck-analyzer/ | |||||
* | tests: Moved assert to the write place in torture_keyfiles. | Andreas Schneider | 2011-01-06 | 1 | -1/+1 | |
| | | | | Found by clang-analyzer http://test.libssh.org/clang-analyzer/ | |||||
* | tests: Assert if ssh_get_random failed in torture_rand_thread. | Andreas Schneider | 2011-01-06 | 1 | -0/+1 | |
| | | | | Found by clang-analyzer http://test.libssh.org/clang-analyzer/ | |||||
* | examples: Use the src mode in scp do_copy function. | Andreas Schneider | 2011-01-06 | 1 | -2/+2 | |
| | | | | Found by clang-analyzer http://test.libssh.org/clang-analyzer/ | |||||
* | options: Remove unsused getopt option. | Andreas Schneider | 2011-01-06 | 1 | -5/+1 | |
| | | | | Found by clang-analyzer http://test.libssh.org/clang-analyzer/ | |||||
* | tests: Added missing asserts in torture_keyfiles. | Andreas Schneider | 2011-01-06 | 1 | -0/+3 | |
| | | | | Found by clang-analyzer http://test.libssh.org/clang-analyzer/ | |||||
* | messages: Added missing NULL pointer checks. | Andreas Schneider | 2011-01-06 | 1 | -2/+2 | |
| | | | | Found by clang-analyzer http://test.libssh.org/clang-analyzer/ | |||||
* | Fix the missing returns in C++ wrapper | Aris Adamantiadis | 2011-01-05 | 1 | -1/+20 | |
| | ||||||
* | tests: Fixed the segfault in torture_knownhosts. | Andreas Schneider | 2011-01-04 | 1 | -12/+12 | |
| | ||||||
* | Fix "SSH_KEXINIT received in wrong state" race | Aris Adamantiadis | 2011-01-04 | 1 | -1/+1 | |
| | | | | Setting the flag before doing any IO | |||||
* | poll: Ensure that the poll handle and ctx is zeroed. | Andreas Schneider | 2011-01-03 | 1 | -19/+24 | |
| | ||||||
* | tests: Fixed a build warning introduced before. | Andreas Schneider | 2011-01-03 | 5 | -15/+11 | |
| | ||||||
* | tests: Call init and finalize in client torture tests. | Andreas Schneider | 2011-01-03 | 5 | -5/+40 | |
| | ||||||
* | tests: Added more openssl valgrind suppressions. | Andreas Schneider | 2011-01-03 | 1 | -1/+13 | |
| | ||||||
* | messages: Fixed cast warnings on Windows. | Andreas Schneider | 2011-01-02 | 1 | -5/+5 | |
| | ||||||
* | base64: Added casts to GET macros to fix build warnings. | Andreas Schneider | 2011-01-02 | 1 | -3/+3 | |
| | ||||||
* | scp: Fixed a build warning on Windows. | Andreas Schneider | 2011-01-02 | 1 | -1/+1 | |
| | ||||||
* | poll: Fixed a build warning on Windows. | Andreas Schneider | 2011-01-02 | 1 | -1/+1 | |
| | ||||||
* | bind: Added include file for close function on Windows. | Andreas Schneider | 2011-01-02 | 1 | -0/+1 | |
| | ||||||
* | cmake: Fixed msvc posix warnings and unsecure functions. | Andreas Schneider | 2011-01-02 | 2 | -8/+5 | |
| | ||||||
* | Call ssh_init()/ssh_finalize bf/af each testcase | Aris Adamantiadis | 2011-01-02 | 6 | -6/+31 | |
| | ||||||
* | Revert "tests: Call ssh_init() and ssh_finalize() before we run the tests." | Aris Adamantiadis | 2011-01-02 | 1 | -12/+3 | |
| | | | | | | | Reason: breaks test_rand, because threading has to be initialized before ssh_init() This reverts commit ef1866db76ed10d64bf8cf97111554b2b2eb1278. | |||||
* | tests: Call ssh_init() and ssh_finalize() before we run the tests. | Andreas Schneider | 2011-01-02 | 1 | -3/+12 | |
| | ||||||
* | tests: More openssl valgrind suppressions. | Andreas Schneider | 2011-01-02 | 1 | -0/+7 | |
| | ||||||
* | tests: Updated the valgrind suppressions file. | Andreas Schneider | 2011-01-01 | 1 | -31/+54 | |
| | ||||||
* | cmake: Added missing OpenSSL directories on Windows. | Andreas Schneider | 2011-01-01 | 1 | -0/+11 | |
| | ||||||
* | cmake: Added looking for zdll on Windows. | Andreas Schneider | 2011-01-01 | 1 | -0/+1 | |
| | ||||||
* | tests: Added torture_auth_autopubkey client test. | Andreas Schneider | 2011-01-01 | 1 | -0/+29 | |
| | ||||||
* | tests: Added a windows test for torture_path_expand_tilde. | Andreas Schneider | 2011-01-01 | 1 | -2/+27 | |
| | ||||||
* | tests: Fixed includes for torture_list on Windows. | Andreas Schneider | 2011-01-01 | 1 | -0/+1 | |
| | ||||||
* | tests: Fixed includes of torture_options for windows. | Andreas Schneider | 2011-01-01 | 1 | -2/+6 | |
| | ||||||
* | tests: Fixed the torture_callbacks test. | Andreas Schneider | 2011-01-01 | 1 | -0/+1 | |
| | | | | | We should zero the structure else ssh_callback_exists() can't be working. | |||||
* | tests: Don't run torture_keyfiles on Windows. | Andreas Schneider | 2011-01-01 | 1 | -1/+3 | |
| | | | | This test needs ssh-keygen to be working. | |||||
* | tests: Fixed Windows build of torture_options. | Andreas Schneider | 2011-01-01 | 1 | -0/+1 | |
| | ||||||
* | misc: Avoid redefine of _WIN32_IE. | Andreas Schneider | 2011-01-01 | 1 | -2/+9 | |
| | ||||||
* | cmake: Added ssl libraries for OS/2. | Andreas Schneider | 2010-12-31 | 1 | -0/+2 | |
| | ||||||
* | cmake: Fixed a warning on OS/2 if the compiler version is empty. | Andreas Schneider | 2010-12-31 | 1 | -1/+1 | |
| | ||||||
* | libssh: Don't use the visibility flag on OS/2. | Andreas Schneider | 2010-12-31 | 2 | -3/+3 | |
| | ||||||
* | cmake: Fixed installation path for OS/2. | Andreas Schneider | 2010-12-31 | 2 | -16/+17 | |
| | ||||||
* | build: Fixed some build warnings. | Andreas Schneider | 2010-12-30 | 1 | -0/+3 | |
| | ||||||
* | cmake: Improved the ctest file. | Andreas Schneider | 2010-12-30 | 1 | -7/+21 | |
| | ||||||
* | cmake: Only use Profiling on Unix systems. | Andreas Schneider | 2010-12-30 | 1 | -1/+6 | |
| | ||||||
* | cmake: Fixed NSIS detection on Windows. | Andreas Schneider | 2010-12-30 | 1 | -2/+2 | |
| |