summaryrefslogtreecommitdiffstats
path: root/libssh/server.c
Commit message (Collapse)AuthorAgeFilesLines
* added ssh_message_auth_reply_pk_ok_simpleAris Adamantiadis2009-12-201-0/+13
|
* Add key validation in server side authenticationAris Adamantiadis2009-12-201-0/+7
|
* packet SSH_KEXINIT received and parsedAris Adamantiadis2009-12-121-3/+4
| | | | Resolved some bugs in the callback mechanism as well
* Fix some doxygen errorsAris Adamantiadis2009-12-091-1/+1
|
* More callback stuff in connectionAris Adamantiadis2009-12-051-0/+7
| | | | | I have coded it, not actually tested it :) It still needs work to get past the banner exchange.
* Squashed commit of the following:Aris Adamantiadis2009-11-271-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | commit 43fad8dfd977637c31fade76ace2905f6528c3bc Author: Aris Adamantiadis <aris@0xbadc0de.be> Date: Fri Nov 27 18:39:06 2009 +0100 adaptation to the new ssh_poll_handle object name commit 1e5e6ac4605adf10d437d04f0fd4b7e66024853c Merge: 3fd92a0... 810adad... Author: Aris Adamantiadis <aris@0xbadc0de.be> Date: Fri Nov 27 18:33:06 2009 +0100 Merge branch 'master' into badcode/libssh_async commit 3fd92a08eb74b1447a9ff4ca4e1d137475c62cc6 Author: Aris Adamantiadis <aris@0xbadc0de.be> Date: Mon Nov 2 14:25:46 2009 +0100 Compiles again commit 8910d7b9692418c9ccea0234f6d49674d238dc16 Merge: e83f1b5... cce34a6... Author: Aris Adamantiadis <aris@0xbadc0de.be> Date: Mon Nov 2 12:47:34 2009 +0100 Merge branch 'master' into libssh_async Very big merge ! Conflicts: include/libssh/callbacks.h include/libssh/priv.h libssh/channels.c libssh/messages.c libssh/packet.c libssh/server.c libssh/session.c libssh/socket.c commit e83f1b593219e183082b015315f09bfe95a29cfc Author: Aris Adamantiadis <aris@0xbadc0de.be> Date: Mon Nov 2 12:07:01 2009 +0100 rename callback.h commit dffa7b730e8f39e2198de18ab69a8e57bef95e58 Merge: 5a8b748... de8808c... Author: Aris Adamantiadis <aris@0xbadc0de.be> Date: Tue Sep 15 10:50:07 2009 +0200 Merge branch 'master' of git://git.libssh.org/projects/libssh/libssh into libssh_async commit 5a8b7484f36599d28f2c0c14a23b76bfc7257638 Author: Aris Adamantiadis <aris@0xbadc0de.be> Date: Sun Sep 13 12:55:18 2009 +0200 More updates to callback system commit 18620c20d5e4e62107093f7fd330e553493253fa Author: Aris Adamantiadis <aris@0xbadc0de.be> Date: Sat Sep 12 22:26:52 2009 +0200 Same thing with channel_rcv_data commit fc4a56f6726e409a5866272923f1cbebfc821af3 Author: Aris Adamantiadis <aris@0xbadc0de.be> Date: Sat Sep 12 22:17:45 2009 +0200 added a few packet handlers for channels commit 4b6bb4fd00b10cf1321a764126f277ab204bffe3 Author: Aris Adamantiadis <aris@0xbadc0de.be> Date: Fri Sep 11 23:15:25 2009 +0300 sample packet handlers + bugfixes commit 2784d09d6dec0a8f868912d14f90d860233b3f82 Author: Aris Adamantiadis <aris@0xbadc0de.be> Date: Fri Sep 11 20:30:50 2009 +0300 Packet callbacks nearly finished Need tests and implementation of some packet callbacks commit cd3ea43f20c9ae2f54576ca98a0ea75c5d4299d3 Author: Aris Adamantiadis <aris@0xbadc0de.be> Date: Thu Sep 10 12:46:02 2009 +0300 First step of async packet handling The socket to packet handler is nearly done (needs testing) I still need to define the interface for callbacks. commit 487f4d2a900a5fe3b90ceda4460ab7d38d7ad722 Author: Aris Adamantiadis <aris@0xbadc0de.be> Date: Tue Sep 8 23:24:09 2009 +0300 Almost complete socket callback system Finished the callback function so it bufferizes data when callee does not use it. Flushes the buffer automaticaly after a ssh_socket_nonblocking_flush commit 23571f22fac9e40c855dfa99569bba181a39648b Author: Aris Adamantiadis <aris@0xbadc0de.be> Date: Tue Sep 8 22:22:32 2009 +0300 First draft of a callback system
* Fix server kex againAris Adamantiadis2009-10-291-4/+4
|
* Fix server kexAris Adamantiadis2009-10-291-6/+3
|
* Added option to set log_verbosity in the server.Andreas Schneider2009-10-151-7/+5
|
* Fix server. Now, it runsAris Adamantiadis2009-10-111-1/+1
|
* ssh_disconnect doesn't free the session anymoreAris Adamantiadis2009-10-091-3/+0
|
* No more SSH_BIND SSH_MESSAGE etc.Aris Adamantiadis2009-10-091-11/+11
|
* Modified server APIAris Adamantiadis2009-10-091-19/+14
|
* Fixed build temporarily.Andreas Schneider2009-10-051-0/+2
|
* Merge branch 'master' of git://git.libssh.org/projects/libssh/libsshAris Adamantiadis2009-10-051-62/+96
|\
| * do not segfault in ssh_bind_accept if bindaddr is NULLBernhard R. Link2009-10-051-6/+10
| | | | | | | | Signed-off-by: Andreas Schneider <mail@cynapses.org>
| * Temporary server fixup for options structure deletAris Adamantiadis2009-10-031-3/+12
| | | | | | | | server_set_kex needs to be rewritten
| * Get rid of the options structure.Andreas Schneider2009-10-021-55/+76
| |
* | Missed copying of log verbosityAris Adamantiadis2009-09-301-1/+1
|/
* more priv.h splittingAris Adamantiadis2009-09-261-0/+1
|
* More include file splittingAris Adamantiadis2009-09-261-0/+3
|
* Removed obsolete optionsAris Adamantiadis2009-09-261-9/+1
|
* More include file movingsAris Adamantiadis2009-09-261-0/+3
|
* Moved lots of declaration out of priv.hAris Adamantiadis2009-09-231-0/+6
|
* Get rid of SSH_MESSAGEAris Adamantiadis2009-09-231-30/+30
|
* get rid of SSH_OPTIONSAris Adamantiadis2009-09-231-2/+2
|
* get rid of SSH_SESSIONAris Adamantiadis2009-09-231-9/+9
|
* Use new options interface in server code.Andreas Schneider2009-09-221-3/+3
|
* experimental callback systemAris Adamantiadis2009-08-231-1/+1
|
* Fix a typo: CHANNEL * -> ssh_channelmilo2009-08-071-1/+1
| | | | Signed-off-by: Andreas Schneider <mail@cynapses.org>
* Fix possible memory corruption (#14)milo2009-08-061-2/+2
| | | | Signed-off-by: Andreas Schneider <mail@cynapses.org>
* Fixed libssh compilation without server support.Andreas Schneider2009-07-311-0/+330
|
* Fix build with MSVC.Andreas Schneider2009-07-301-2/+1
|
* Move channel_write_stderr to server.c.Andreas Schneider2009-07-291-0/+17
|
* Change PRIVATE_KEY * to ssh_private_keyAris Adamantiadis2009-07-241-3/+3
|
* Changed all PUBLIC_KEY * to ssh_public_keyAris Adamantiadis2009-07-241-1/+1
|
* Change all occurences of STRING * to ssh_stringAris Adamantiadis2009-07-241-4/+4
|
* ssh_init()Aris Adamantiadis2009-06-151-5/+1
| | | | | | | fixes in client.c and server.c for this git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@778 7dcaeef0-15fb-0310-b436-a5af3365683c
* Fix the vim modeline and place it at the end of the file.Andreas Schneider2009-05-121-2/+1
| | | | git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@763 7dcaeef0-15fb-0310-b436-a5af3365683c
* Added a ssh_bind_set_fd() function.Andreas Schneider2009-05-111-1/+5
| | | | git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@754 7dcaeef0-15fb-0310-b436-a5af3365683c
* Improve ssh_accept().Andreas Schneider2009-04-301-21/+40
| | | | git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@656 7dcaeef0-15fb-0310-b436-a5af3365683c
* Improve dh_handshake_server().Andreas Schneider2009-04-301-83/+148
| | | | git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@655 7dcaeef0-15fb-0310-b436-a5af3365683c
* Improve server_set_kex().Andreas Schneider2009-04-291-39/+47
| | | | git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@654 7dcaeef0-15fb-0310-b436-a5af3365683c
* Improve ssh_bind_free().Andreas Schneider2009-04-291-6/+12
| | | | git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@653 7dcaeef0-15fb-0310-b436-a5af3365683c
* Improve ssh_bind_accept().Andreas Schneider2009-04-291-60/+69
| | | | git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@652 7dcaeef0-15fb-0310-b436-a5af3365683c
* Format ssh_bind options.Andreas Schneider2009-04-291-6/+6
| | | | git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@651 7dcaeef0-15fb-0310-b436-a5af3365683c
* Improve ssh_bind_listen().Andreas Schneider2009-04-291-22/+32
| | | | git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@650 7dcaeef0-15fb-0310-b436-a5af3365683c
* Format ssh_bind_set_options().Andreas Schneider2009-04-291-2/+2
| | | | git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@649 7dcaeef0-15fb-0310-b436-a5af3365683c
* Improve ssh_bind_new().Andreas Schneider2009-04-291-8/+11
| | | | git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@648 7dcaeef0-15fb-0310-b436-a5af3365683c
* Add more error checks to bind_socket().Andreas Schneider2009-04-291-23/+42
| | | | git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@647 7dcaeef0-15fb-0310-b436-a5af3365683c