summaryrefslogtreecommitdiffstats
path: root/libssh
Commit message (Collapse)AuthorAgeFilesLines
...
* 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.
* Correctly handle channel failures and chan statesAris Adamantiadis2010-01-243-59/+60
|
* Made packet handlers independant of session bufferAris Adamantiadis2010-01-241-9/+9
|
* Few function name changesAris Adamantiadis2010-01-242-5/+5
|
* Made ssh_packet_read asynchronousAris Adamantiadis2010-01-243-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.
* Removed last calls to packet_readAris Adamantiadis2010-01-243-83/+46
|
* Made parts of SSH asynchronous (inc kex1)Aris Adamantiadis2010-01-245-205/+184
|
* Beginning of async solution for SSH1Aris Adamantiadis2010-01-242-4/+70
|
* Move SSH-1 specific packet functions in packet1.cAris Adamantiadis2010-01-233-324/+350
|
* Fixed error message when connection failedAris Adamantiadis2010-01-161-2/+4
|
* Fix SSH1 related warningAris Adamantiadis2010-01-161-0/+4
|
* SSH-1 cleanup and compileAris Adamantiadis2010-01-102-98/+20
| | | | Not tested, probably not working correctly yet
* Set socket blocking after connexionAris Adamantiadis2010-01-082-7/+8
|
* Enforce NULL ptr verification in scp.cAris Adamantiadis2010-01-081-0/+34
|
* Fixed blocking bug in channel_pollAris Adamantiadis2010-01-086-20/+25
|
* Cosmetics for packet numberingAris Adamantiadis2010-01-081-44/+49
|
* Oops, forgot the callback for server DHAris Adamantiadis2010-01-081-1/+1
|
* No more packet_read2() !Aris Adamantiadis2010-01-081-197/+4
|
* Prefix message_new with ssh_Aris Adamantiadis2010-01-081-5/+5
|
* Prefix message_handle_channel_request with ssh_Aris Adamantiadis2010-01-082-2/+2
|
* Dequeue the processed messagesAris Adamantiadis2010-01-082-3/+27
|
* Renamed message_queue to ssh_message_queueAris Adamantiadis2010-01-081-5/+5
|
* Merged the channel_request hdlrs and clean hdlrsAris Adamantiadis2010-01-082-165/+58
|
* ssh_packet_userauth_request with new systemAris Adamantiadis2010-01-082-23/+29
|
* Converted message handlers to new systemAris Adamantiadis2010-01-072-53/+53
|
* Changes to messages for async message handlingAris Adamantiadis2010-01-071-10/+23
|
* Removed packet_wait for SSH2Aris Adamantiadis2010-01-061-21/+1
|
* Made the server DH asynchronous.Aris Adamantiadis2010-01-062-63/+76
| | | | | | It still needs testing and cleanup, it was done with less care than the client-side. The socket listening and connexion is still synchronous
* Add support for async global requestsAris Adamantiadis2010-01-062-19/+87
| | | | | Normally the infamous packet_wait() synchronous call is gone in all SSH2 client code.
* Fixed typos from a* to error.cAris Adamantiadis2010-01-068-29/+29
|
* Fix build when WITH_SSH1 undefinedAris Adamantiadis2010-01-061-0/+3
|
* Part of kex.c is SSH-1 specificAris Adamantiadis2010-01-031-0/+3
|
* Remove some references to packet_wait()Aris Adamantiadis2010-01-031-2/+2
|