summaryrefslogtreecommitdiffstats
path: root/include/libssh
Commit message (Collapse)AuthorAgeFilesLines
* Few function name changesAris Adamantiadis2010-01-241-1/+1
|
* Made ssh_packet_read asynchronousAris Adamantiadis2010-01-241-5/+1
| | | | | | 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-241-0/+4
|
* Made parts of SSH asynchronous (inc kex1)Aris Adamantiadis2010-01-244-2/+14
|
* Beginning of async solution for SSH1Aris Adamantiadis2010-01-241-0/+2
|
* Move SSH-1 specific packet functions in packet1.cAris Adamantiadis2010-01-231-0/+12
|
* stub of C++ wrapper for libsshAris Adamantiadis2010-01-211-0/+65
|
* SSH-1 cleanup and compileAris Adamantiadis2010-01-101-1/+3
| | | | Not tested, probably not working correctly yet
* Set socket blocking after connexionAris Adamantiadis2010-01-081-1/+3
|
* Fixed blocking bug in channel_pollAris Adamantiadis2010-01-081-1/+1
|
* No more packet_read2() !Aris Adamantiadis2010-01-081-0/+3
|
* Prefix message_handle_channel_request with ssh_Aris Adamantiadis2010-01-081-1/+1
|
* Dequeue the processed messagesAris Adamantiadis2010-01-081-0/+1
|
* Renamed message_queue to ssh_message_queueAris Adamantiadis2010-01-081-1/+1
|
* Merged the channel_request hdlrs and clean hdlrsAris Adamantiadis2010-01-082-2/+2
|
* ssh_packet_userauth_request with new systemAris Adamantiadis2010-01-081-0/+1
|
* Converted message handlers to new systemAris Adamantiadis2010-01-071-0/+2
|
* Changes to messages for async message handlingAris Adamantiadis2010-01-071-0/+1
|
* Removed packet_wait for SSH2Aris Adamantiadis2010-01-061-0/+2
|
* Made the server DH asynchronous.Aris Adamantiadis2010-01-062-0/+9
| | | | | | 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-1/+4
| | | | | Normally the infamous packet_wait() synchronous call is gone in all SSH2 client code.
* Remove some references to packet_wait()Aris Adamantiadis2010-01-031-0/+1
|
* Removed channel_handle now unused functionAris Adamantiadis2010-01-031-1/+0
|
* Some work for async channel requestsAris Adamantiadis2010-01-031-0/+20
|
* Add new API function ssh_userauth_privatekey_file().Vic Lee2009-12-301-0/+2
| | | | | Signed-off-by: Vic Lee <llyzs@163.com> Signed-off-by: Andreas Schneider <mail@cynapses.org>
* Made channel_open_session partially asynchronousAris Adamantiadis2009-12-271-0/+3
|
* Asynchronous authentication works !Aris Adamantiadis2009-12-262-14/+43
|
* New packet handler for SSH_USERAUTH_BANNERAris Adamantiadis2009-12-262-1/+29
|
* Asynchronous service requestAris Adamantiadis2009-12-262-1/+17
|
* added ssh_message_auth_reply_pk_ok_simpleAris Adamantiadis2009-12-201-0/+2
|
* Add key validation in server side authenticationAris Adamantiadis2009-12-202-0/+8
|
* Documentation callbacks.h + standardizationAris Adamantiadis2009-12-181-1/+21
|
* Fixed documentation of buffer struct.Andreas Schneider2009-12-181-2/+1
|
* Moved the doxygen mainpage to doc/mainpage.doxAndreas Schneider2009-12-181-12/+0
|
* Document the callback structure correctly.Andreas Schneider2009-12-181-12/+23
|
* Added a mainpage to doxygen.Andreas Schneider2009-12-181-0/+12
|
* Made packet_wait issue warningsAris Adamantiadis2009-12-131-1/+0
|
* Key exchange currently done asynchronouslyAris Adamantiadis2009-12-131-0/+2
| | | | Fixed an important bug in packet buffering (two packets received in the same recv would'nt be processed correctly)
* packet SSH_KEXINIT received and parsedAris Adamantiadis2009-12-123-1/+33
| | | | Resolved some bugs in the callback mechanism as well
* Async connection + banner fetch is workingAris Adamantiadis2009-12-111-2/+0
|
* Added a global poll contextAris Adamantiadis2009-12-111-1/+2
|
* Don't install crypto.h which is an internal header file.Andreas Schneider2009-12-101-1/+0
|
* Fix some doxygen errorsAris Adamantiadis2009-12-091-3/+6
|
* Remove socklen_t definition.Andreas Schneider2009-12-091-3/+0
| | | | | | Tthe problem is that winsock2.h defines socklen_t as a typedef, not as a define, so depending on the order of includes you can get errors in ws2tcpip.h with msvc.
* struct socket -> struct ssh_socket_struct +typedefAris Adamantiadis2009-12-065-33/+35
|
* More callback stuff in connectionAris Adamantiadis2009-12-052-1/+1
| | | | | I have coded it, not actually tested it :) It still needs work to get past the banner exchange.
* Trying to adapt client.c to use callbacksAris Adamantiadis2009-12-031-0/+12
|
* Asynchronous sockets work !Aris Adamantiadis2009-12-011-8/+9
| | | | | Still need a bit of tuning but it's stable enough for our current needs
* Added gettimeofday for Windows.Andreas Schneider2009-12-011-0/+5
| | | | Thanks to Patrick Spendrin.
* Fixed uint* to work on Windows.Andreas Schneider2009-12-014-5/+9
| | | | Thanks to Patrick Spendrin.