aboutsummaryrefslogtreecommitdiff
path: root/libssh
AgeCommit message (Collapse)AuthorFilesLines
2010-03-13Fixed a memory leak in ssh_try_publickey_from_file.Andreas Schneider1-0/+4
2010-03-13Added missing SSH_OPTIONS_FD option.Andreas Schneider1-0/+9
2010-03-12Remove support for SSHv1 Cipher variable.Andreas Schneider1-2/+0
2010-03-04Fixed and added support for several identity files.Andreas Schneider5-182/+383
2010-03-04Fixed linking of the tests.Andreas Schneider1-0/+5
2010-03-04Rename ssh_list_add to ssh_list_append.Andreas Schneider3-3/+3
2010-03-04Added a prepend function for ssh_list.Andreas Schneider1-0/+19
2010-03-02Fixed sftp_parse_longname() on Windows.Andreas Schneider1-2/+12
There is no strndup function on Windows.
2010-03-01Fix a race condition bug in ssh_scp_close()Aris Adamantiadis1-1/+11
Conflicts: libssh/scp.c
2010-03-01Answer to openssh's keepalivesAris Adamantiadis1-0/+9
2010-03-01renamed ssh_list_get_head to ssh_list_pop_headAris Adamantiadis4-5/+12
2010-02-26Fixed documentation in scp codeAris Adamantiadis1-1/+19
2010-02-24Fixed longname parsing, this only workings with readdir.Andreas Schneider1-12/+13
2010-02-23Added owner and group information in sftp attributes.Andreas Schneider1-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.
2010-02-12Fix compilation of opensolarisAris Adamantiadis1-0/+2
2010-02-11Try zlib compression and fallback to none if not available.Andreas Schneider1-2/+2
2010-02-11More C++ wrapper work.Aris Adamantiadis1-0/+1
Wrote stubs of functions needed in the wrapper Created an Exception class which greatly simplifies the use of libssh in C++
2010-02-11Fix closesocket() portbug for win32Aris Adamantiadis1-1/+5
2010-02-11Use closesocket in server.c for win32Aris Adamantiadis1-0/+4
Resolves #56
2010-02-10Make better error messages for SSH1 errorsAris Adamantiadis1-0/+10
2010-02-09aes192-ctr and aes256-ctr working on libcryptoAris Adamantiadis2-2/+25
2010-02-09aes128-ctr aes192-ctr aes256-ctr for libgcryptAris Adamantiadis2-8/+51
2010-02-09Added aes128-ctr support for libcrypto (openssl)Aris Adamantiadis1-0/+28
2010-02-09KEX bug: client preference should be prioritaryAris Adamantiadis1-15/+15
2010-02-07Describe the main group a bit.Andreas Schneider1-1/+3
2010-02-07Respect known_hosts file set by the user.Andreas Schneider1-3/+5
Thanks to contact@leblanc-simon.eu for the patch.
2010-02-07Improve the SSH string documentation.Andreas Schneider1-26/+46
2010-02-05Improve the session documentation.Andreas Schneider2-48/+93
2010-02-02add missing leave_function()Aris Adamantiadis1-2/+4
2010-02-02Handle timeout correctlyAris Adamantiadis1-1/+1
2010-02-01The ssh_message object needs to be freed after processing in channel_accept().Vic Lee1-1/+4
Signed-off-by: Vic Lee <llyzs@163.com> Signed-off-by: Andreas Schneider <mail@cynapses.org>
2010-01-30Fix compilation without WITH_SSH1Aris Adamantiadis1-0/+2
2010-01-25Hacked SSH1 to get past authenticationAris Adamantiadis4-15/+37
Also resolved some bugs that may impact 0.4. need to check
2010-01-25Fix poll not waking up on connect on win32Aris Adamantiadis1-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.
2010-01-24Correctly handle channel failures and chan statesAris Adamantiadis3-59/+60
2010-01-24Made packet handlers independant of session bufferAris Adamantiadis1-9/+9
2010-01-24Few function name changesAris Adamantiadis2-5/+5
2010-01-24Made ssh_packet_read asynchronousAris Adamantiadis3-37/+53
Normally that's all that was needed into making SSH1 compliant with the new API. Beware, I have only implemented it, not actually tested it.
2010-01-24Removed last calls to packet_readAris Adamantiadis3-83/+46
2010-01-24Made parts of SSH asynchronous (inc kex1)Aris Adamantiadis5-205/+184
2010-01-24Beginning of async solution for SSH1Aris Adamantiadis2-4/+70
2010-01-23Move SSH-1 specific packet functions in packet1.cAris Adamantiadis3-324/+350
2010-01-16Fixed error message when connection failedAris Adamantiadis1-2/+4
2010-01-16Fix SSH1 related warningAris Adamantiadis1-0/+4
2010-01-10SSH-1 cleanup and compileAris Adamantiadis2-98/+20
Not tested, probably not working correctly yet
2010-01-08Set socket blocking after connexionAris Adamantiadis2-7/+8
2010-01-08Enforce NULL ptr verification in scp.cAris Adamantiadis1-0/+34
2010-01-08Fixed blocking bug in channel_pollAris Adamantiadis6-20/+25
2010-01-08Cosmetics for packet numberingAris Adamantiadis1-44/+49
2010-01-08Oops, forgot the callback for server DHAris Adamantiadis1-1/+1