summaryrefslogtreecommitdiffstats
path: root/libssh
Commit message (Collapse)AuthorAgeFilesLines
...
* Send back replies to openssh's keepalivesAris Adamantiadis2010-03-011-0/+9
|
* Fixed documentation in scp codeAris Adamantiadis2010-02-261-1/+19
|
* Fixed longname parsing, this only workings with readdir.Andreas Schneider2010-02-241-12/+13
|
* Added owner and group information in sftp attributes.Andreas Schneider2010-02-231-0/+53
| | | | | Parse the longname which is the output of 'ls -l' and set the owner and group if we are talking to an openssh server.
* Fix compilation of opensolarisAris Adamantiadis2010-02-121-0/+2
|
* Try zlib compression and fallback to none if not available.Andreas Schneider2010-02-111-2/+2
|
* Use closesocket in server.c for win32Aris Adamantiadis2010-02-111-0/+4
| | | | Resolves #56
* aes128-ctr aes192-ctr aes256-ctr for libgcryptAris Adamantiadis2010-02-092-8/+51
|
* aes192-ctr and aes256-ctr working on libcryptoAris Adamantiadis2010-02-092-2/+25
|
* Added aes128-ctr support for libcrypto (openssl)Aris Adamantiadis2010-02-091-0/+28
|
* KEX bug: client preference should be prioritaryAris Adamantiadis2010-02-091-15/+15
|
* Respect known_hosts file set by the user.Andreas Schneider2010-02-071-3/+5
| | | | Thanks to contact@leblanc-simon.eu for the patch.
* The ssh_message object needs to be freed after processing in channel_accept().Vic Lee2010-02-011-1/+4
| | | | | Signed-off-by: Vic Lee <llyzs@163.com> Signed-off-by: Andreas Schneider <mail@cynapses.org>
* Fix underflow when leave_function() are unbalancedAris Adamantiadis2010-01-291-1/+0
|
* In handle_channel_request_open(), variable type is freed too early and cause ↵Vic Lee2010-01-291-1/+5
| | | | | | | memory corruptions. Signed-off-by: Vic Lee <llyzs@163.com> Signed-off-by: Andreas Schneider <mail@cynapses.org>
* File handle need to be closed in case of errors in privatekey_from_fileVic Lee2009-12-231-0/+2
| | | | | Signed-off-by: Vic Lee <llyzs@163.com> Signed-off-by: Andreas Schneider <mail@cynapses.org>
* Added private key type detection feature in privatekey_from_fileVic Lee2009-12-221-5/+29
| | | | | Signed-off-by: Vic Lee <llyzs@163.com> Signed-off-by: Andreas Schneider <mail@cynapses.org>
* Fixed ssh_get_user_home_dir() to be thread safe.Andreas Schneider2009-12-211-4/+11
|
* Improved doxygen output of ssh_options_set().Andreas Schneider2009-12-191-61/+64
|
* Fixed documentation of ssh_options_copy().Andreas Schneider2009-12-181-2/+4
|
* Fixed the doxygen documentation.Andreas Schneider2009-12-181-0/+10
|
* Fix stupid bug which stops log_verbosity workingAris Adamantiadis2009-12-021-0/+1
|
* Fixed indent.Andreas Schneider2009-12-021-2/+2
|
* Added gettimeofday for Windows.Andreas Schneider2009-12-022-0/+18
| | | | Thanks to Patrick Spendrin.
* Fixed uint* to work on Windows.Andreas Schneider2009-12-021-19/+19
| | | | Thanks to Patrick Spendrin.
* Build the pcap source only if enabled.Andreas Schneider2009-11-191-1/+8
|
* Fix compile bug introduced by another bugfixAris Adamantiadis2009-11-181-1/+1
|
* Fix another memleakAris Adamantiadis2009-11-181-1/+1
| | | | Use buffer_free instead of SAFE_FREE
* Fixed possible doulbe free problem found by Bernhard R. Link.Andreas Schneider2009-11-181-0/+4
|
* Added more error messages and checking to handle_channel_request.Andreas Schneider2009-11-181-0/+28
|
* Fixed a memory leak in channel_new() if we have an error.Andreas Schneider2009-11-181-0/+1
|
* Pcap: more cleanup and minimalist APIAris Adamantiadis2009-11-162-2/+27
|
* Pcap: Fix bug with non-encrypted incoming packetsAris Adamantiadis2009-11-161-0/+11
|
* Improved pcap dumping supportAris Adamantiadis2009-11-163-16/+112
|
* Improve standard logging.Andreas Schneider2009-11-122-1/+5
|
* Fixed setting the timeout and ssh2 and ssh1 option.Andreas Schneider2009-11-121-4/+4
|
* Fixed setting the log verbosity.Andreas Schneider2009-11-121-2/+2
|
* Added an option to set log verbosity as string.Andreas Schneider2009-11-101-0/+31
|
* Always use the poll-emulation on Windows.Andreas Schneider2009-11-091-1/+2
| | | | Until we we have a solution to use WSAPoll only on Vista and newer.
* Added explanation in ssh_silent_disconnect doxygenAris Adamantiadis2009-11-091-1/+2
|
* First lines of experimental pcap output supportAris Adamantiadis2009-11-083-0/+307
| | | | This will serve to debug packets right under wireshark !
* Update structures name to new conventionAris Adamantiadis2009-11-061-28/+28
| | | | | SSH_POLL* -> ssh_poll_handle, SSH_POLL_CTX* -> ssh_poll_ctx
* channel_read() won't block until count b. are readAris Adamantiadis2009-11-051-4/+6
|
* Fix openssl header inclusionAris Adamantiadis2009-11-031-2/+1
| | | | | caused cbc_encrypt to be redefined by an openssl macro
* Fixed setting knownhosts in ssh_is_server_known().Andreas Schneider2009-10-291-5/+7
|
* Fixed a segfault on Windows.Andreas Schneider2009-10-291-1/+1
|
* Fix server kex againAris Adamantiadis2009-10-292-5/+5
|
* Fix server kexAris Adamantiadis2009-10-291-6/+3
|
* improve error reporting of sftp.cBernhard R. Link2009-10-251-37/+203
| | | | Signed-off-by: Andreas Schneider <mail@cynapses.org>
* buffer_get_data returns 0 on error, so checking buffer_get_u* for < 0 makes ↵Bernhard R. Link2009-10-252-2/+2
| | | | | | no sense Signed-off-by: Andreas Schneider <mail@cynapses.org>