summaryrefslogtreecommitdiffstats
path: root/libssh
Commit message (Collapse)AuthorAgeFilesLines
...
* Fixed the documentation of the client code.Andreas Schneider2010-04-041-13/+23
|
* Fixed the group of the options.Andreas Schneider2010-04-041-5/+6
|
* Fixed the documentation of key functions.Andreas Schneider2010-04-042-86/+152
|
* Fixed the documentation of log.cAndreas Schneider2010-04-041-6/+8
|
* Fixed the documentation of misc.cAndreas Schneider2010-04-041-25/+35
|
* Fixed the documentation of error.cAndreas Schneider2010-04-041-8/+7
|
* Fixed the documentation of buffer.cAndreas Schneider2010-04-041-121/+237
|
* Fixed the documentation of auth.cAndreas Schneider2010-04-041-67/+89
|
* Fixed config parsing wich has overwritten user specified values.Andreas Schneider2010-04-041-7/+11
|
* Fixed a build warning in sftp.Andreas Schneider2010-03-291-0/+1
|
* Fixes the broken algorithm choice for serverAris Adamantiadis2010-03-282-29/+30
|
* Fix crash when no callback is definedAris Adamantiadis2010-03-281-1/+1
|
* Fixed build warnings on Windows.Andreas Schneider2010-03-251-0/+3
|
* Fixed a build warning.Andreas Schneider2010-03-251-1/+1
|
* Fixed a build warning in ssh_userauth_autopubkey.Andreas Schneider2010-03-251-0/+3
|
* Fixed spelling.Andreas Schneider2010-03-255-6/+6
|
* Fixed a memory leak in ssh_try_publickey_from_file.Andreas Schneider2010-03-131-0/+4
|
* Added missing SSH_OPTIONS_FD option.Andreas Schneider2010-03-131-0/+9
|
* Remove support for SSHv1 Cipher variable.Andreas Schneider2010-03-121-2/+0
|
* Fixed and added support for several identity files.Andreas Schneider2010-03-045-182/+383
|
* Fixed linking of the tests.Andreas Schneider2010-03-041-0/+5
|
* Rename ssh_list_add to ssh_list_append.Andreas Schneider2010-03-043-3/+3
|
* Added a prepend function for ssh_list.Andreas Schneider2010-03-041-0/+19
|
* Fixed sftp_parse_longname() on Windows.Andreas Schneider2010-03-021-2/+12
| | | | There is no strndup function on Windows.
* Fix a race condition bug in ssh_scp_close()Aris Adamantiadis2010-03-011-1/+11
| | | | | | Conflicts: libssh/scp.c
* Answer to openssh's keepalivesAris Adamantiadis2010-03-011-0/+9
|
* renamed ssh_list_get_head to ssh_list_pop_headAris Adamantiadis2010-03-014-5/+12
|
* 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
|
* More C++ wrapper work.Aris Adamantiadis2010-02-111-0/+1
| | | | | | Wrote stubs of functions needed in the wrapper Created an Exception class which greatly simplifies the use of libssh in C++
* Fix closesocket() portbug for win32Aris Adamantiadis2010-02-111-1/+5
|
* Use closesocket in server.c for win32Aris Adamantiadis2010-02-111-0/+4
| | | | Resolves #56
* Make better error messages for SSH1 errorsAris Adamantiadis2010-02-101-0/+10
|
* aes192-ctr and aes256-ctr working on libcryptoAris Adamantiadis2010-02-092-2/+25
|
* aes128-ctr aes192-ctr aes256-ctr for libgcryptAris Adamantiadis2010-02-092-8/+51
|
* 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
|
* Describe the main group a bit.Andreas Schneider2010-02-071-1/+3
|
* Respect known_hosts file set by the user.Andreas Schneider2010-02-071-3/+5
| | | | Thanks to contact@leblanc-simon.eu for the patch.
* Improve the SSH string documentation.Andreas Schneider2010-02-071-26/+46
|
* Improve the session documentation.Andreas Schneider2010-02-052-48/+93
|
* add missing leave_function()Aris Adamantiadis2010-02-021-2/+4
|
* Handle timeout correctlyAris Adamantiadis2010-02-021-1/+1
|
* 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 compilation without WITH_SSH1Aris Adamantiadis2010-01-301-0/+2
|
* Hacked SSH1 to get past authenticationAris Adamantiadis2010-01-254-15/+37
| | | | Also resolved some bugs that may impact 0.4. need to check
* Fix poll not waking up on connect on win32Aris Adamantiadis2010-01-251-0/+7
| | | | | | | | | Under windows, poll does not detect connected socket using POLLOUT but POLLWRNORM. "Pending connect requests are indicated in the returned revents member of WSAPOLLFD structure by POLLWRNORM." http://msdn.microsoft.com/en-us/library/ms741669%28VS.85%29.aspx However, I did not test that fix. (no windows at hands). I also don't know if the poll emulation layer works with that too.