Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Few function name changes | Aris Adamantiadis | 2010-01-24 | 1 | -1/+1 |
| | |||||
* | Made ssh_packet_read asynchronous | Aris Adamantiadis | 2010-01-24 | 1 | -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_read | Aris Adamantiadis | 2010-01-24 | 1 | -0/+4 |
| | |||||
* | Made parts of SSH asynchronous (inc kex1) | Aris Adamantiadis | 2010-01-24 | 4 | -2/+14 |
| | |||||
* | Beginning of async solution for SSH1 | Aris Adamantiadis | 2010-01-24 | 1 | -0/+2 |
| | |||||
* | Move SSH-1 specific packet functions in packet1.c | Aris Adamantiadis | 2010-01-23 | 1 | -0/+12 |
| | |||||
* | stub of C++ wrapper for libssh | Aris Adamantiadis | 2010-01-21 | 1 | -0/+65 |
| | |||||
* | SSH-1 cleanup and compile | Aris Adamantiadis | 2010-01-10 | 1 | -1/+3 |
| | | | | Not tested, probably not working correctly yet | ||||
* | Set socket blocking after connexion | Aris Adamantiadis | 2010-01-08 | 1 | -1/+3 |
| | |||||
* | Fixed blocking bug in channel_poll | Aris Adamantiadis | 2010-01-08 | 1 | -1/+1 |
| | |||||
* | No more packet_read2() ! | Aris Adamantiadis | 2010-01-08 | 1 | -0/+3 |
| | |||||
* | Prefix message_handle_channel_request with ssh_ | Aris Adamantiadis | 2010-01-08 | 1 | -1/+1 |
| | |||||
* | Dequeue the processed messages | Aris Adamantiadis | 2010-01-08 | 1 | -0/+1 |
| | |||||
* | Renamed message_queue to ssh_message_queue | Aris Adamantiadis | 2010-01-08 | 1 | -1/+1 |
| | |||||
* | Merged the channel_request hdlrs and clean hdlrs | Aris Adamantiadis | 2010-01-08 | 2 | -2/+2 |
| | |||||
* | ssh_packet_userauth_request with new system | Aris Adamantiadis | 2010-01-08 | 1 | -0/+1 |
| | |||||
* | Converted message handlers to new system | Aris Adamantiadis | 2010-01-07 | 1 | -0/+2 |
| | |||||
* | Changes to messages for async message handling | Aris Adamantiadis | 2010-01-07 | 1 | -0/+1 |
| | |||||
* | Removed packet_wait for SSH2 | Aris Adamantiadis | 2010-01-06 | 1 | -0/+2 |
| | |||||
* | Made the server DH asynchronous. | Aris Adamantiadis | 2010-01-06 | 2 | -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 requests | Aris Adamantiadis | 2010-01-06 | 2 | -1/+4 |
| | | | | | Normally the infamous packet_wait() synchronous call is gone in all SSH2 client code. | ||||
* | Remove some references to packet_wait() | Aris Adamantiadis | 2010-01-03 | 1 | -0/+1 |
| | |||||
* | Removed channel_handle now unused function | Aris Adamantiadis | 2010-01-03 | 1 | -1/+0 |
| | |||||
* | Some work for async channel requests | Aris Adamantiadis | 2010-01-03 | 1 | -0/+20 |
| | |||||
* | Add new API function ssh_userauth_privatekey_file(). | Vic Lee | 2009-12-30 | 1 | -0/+2 |
| | | | | | Signed-off-by: Vic Lee <llyzs@163.com> Signed-off-by: Andreas Schneider <mail@cynapses.org> | ||||
* | Made channel_open_session partially asynchronous | Aris Adamantiadis | 2009-12-27 | 1 | -0/+3 |
| | |||||
* | Asynchronous authentication works ! | Aris Adamantiadis | 2009-12-26 | 2 | -14/+43 |
| | |||||
* | New packet handler for SSH_USERAUTH_BANNER | Aris Adamantiadis | 2009-12-26 | 2 | -1/+29 |
| | |||||
* | Asynchronous service request | Aris Adamantiadis | 2009-12-26 | 2 | -1/+17 |
| | |||||
* | added ssh_message_auth_reply_pk_ok_simple | Aris Adamantiadis | 2009-12-20 | 1 | -0/+2 |
| | |||||
* | Add key validation in server side authentication | Aris Adamantiadis | 2009-12-20 | 2 | -0/+8 |
| | |||||
* | Documentation callbacks.h + standardization | Aris Adamantiadis | 2009-12-18 | 1 | -1/+21 |
| | |||||
* | Fixed documentation of buffer struct. | Andreas Schneider | 2009-12-18 | 1 | -2/+1 |
| | |||||
* | Moved the doxygen mainpage to doc/mainpage.dox | Andreas Schneider | 2009-12-18 | 1 | -12/+0 |
| | |||||
* | Document the callback structure correctly. | Andreas Schneider | 2009-12-18 | 1 | -12/+23 |
| | |||||
* | Added a mainpage to doxygen. | Andreas Schneider | 2009-12-18 | 1 | -0/+12 |
| | |||||
* | Made packet_wait issue warnings | Aris Adamantiadis | 2009-12-13 | 1 | -1/+0 |
| | |||||
* | Key exchange currently done asynchronously | Aris Adamantiadis | 2009-12-13 | 1 | -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 parsed | Aris Adamantiadis | 2009-12-12 | 3 | -1/+33 |
| | | | | Resolved some bugs in the callback mechanism as well | ||||
* | Async connection + banner fetch is working | Aris Adamantiadis | 2009-12-11 | 1 | -2/+0 |
| | |||||
* | Added a global poll context | Aris Adamantiadis | 2009-12-11 | 1 | -1/+2 |
| | |||||
* | Don't install crypto.h which is an internal header file. | Andreas Schneider | 2009-12-10 | 1 | -1/+0 |
| | |||||
* | Fix some doxygen errors | Aris Adamantiadis | 2009-12-09 | 1 | -3/+6 |
| | |||||
* | Remove socklen_t definition. | Andreas Schneider | 2009-12-09 | 1 | -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 +typedef | Aris Adamantiadis | 2009-12-06 | 5 | -33/+35 |
| | |||||
* | More callback stuff in connection | Aris Adamantiadis | 2009-12-05 | 2 | -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 callbacks | Aris Adamantiadis | 2009-12-03 | 1 | -0/+12 |
| | |||||
* | Asynchronous sockets work ! | Aris Adamantiadis | 2009-12-01 | 1 | -8/+9 |
| | | | | | Still need a bit of tuning but it's stable enough for our current needs | ||||
* | Added gettimeofday for Windows. | Andreas Schneider | 2009-12-01 | 1 | -0/+5 |
| | | | | Thanks to Patrick Spendrin. | ||||
* | Fixed uint* to work on Windows. | Andreas Schneider | 2009-12-01 | 4 | -5/+9 |
| | | | | Thanks to Patrick Spendrin. |