summaryrefslogtreecommitdiffstats
path: root/libssh
Commit message (Collapse)AuthorAgeFilesLines
...
* 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
|
* Removed channel_handle now unused functionAris Adamantiadis2010-01-031-26/+0
|
* Channel requests are asynchronousAris Adamantiadis2010-01-031-13/+77
| | | | Exec example also runs perfectly now.
* Explicitely use the packet buffer arg in channelsAris Adamantiadis2010-01-031-20/+23
|
* Some work for async channel requestsAris Adamantiadis2010-01-032-7/+29
|
* Add new API function ssh_userauth_privatekey_file().Vic Lee2009-12-301-0/+66
| | | | | Signed-off-by: Vic Lee <llyzs@163.com> Signed-off-by: Andreas Schneider <mail@cynapses.org>
* In ssh_userauth_pubkey, if publickey argument is NULL, generate it from ↵Vic Lee2009-12-301-2/+18
| | | | | | | privatekey. Signed-off-by: Vic Lee <llyzs@163.com> Signed-off-by: Andreas Schneider <mail@cynapses.org>
* Fix use-without-initializationAris Adamantiadis2009-12-281-13/+15
|
* Made channel_open_session partially asynchronousAris Adamantiadis2009-12-272-42/+67
|
* Fix a few log strings and levels in auth.cAris Adamantiadis2009-12-261-13/+13
|
* Asynchronous authentication works !Aris Adamantiadis2009-12-262-100/+145
|
* New packet handler for SSH_USERAUTH_BANNERAris Adamantiadis2009-12-262-18/+30
|
* Fix tricky bug within packet decodingAris Adamantiadis2009-12-261-0/+1
|
* Asynchronous service requestAris Adamantiadis2009-12-263-49/+73
|
* 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
|
* Some options functions did not show up in doxygenAris Adamantiadis2009-12-201-214/+216
|
* added ssh_message_auth_reply_pk_ok_simpleAris Adamantiadis2009-12-201-0/+13
|