summaryrefslogtreecommitdiffstats
path: root/include/libssh/server.h
Commit message (Collapse)AuthorAgeFilesLines
* Doc: fix a few broken parametersAris Adamantiadis2013-07-131-1/+0
| | | | Reviewed-by: Andreas Schneider <asn@cryptomilk.org>
* gssapi: retrieve forwarded (delegated) ticketsAris Adamantiadis2013-07-131-0/+2
| | | | Reviewed-by: Andreas Schneider <asn@cryptomilk.org>
* auth: adapt libssh to gssapi-with-mic serverAris Adamantiadis2013-07-131-0/+2
| | | | Reviewed-by: Andreas Schneider <asn@cryptomilk.org>
* include: Fix the LGPL header.Andreas Schneider2013-01-231-14/+13
| | | | | This has been reported by rpmlint: libssh-devel.x86_64: W: incorrect-fsf-address libssh.h
* pki: Add a ssh_key_cmp() function.Andreas Schneider2011-10-291-0/+1
|
* server: ssh_bind_accept_fdAris Adamantiadis2011-10-131-0/+15
| | | | | This function will not call accept() but use function parameter instead
* doc: Improve doc of ssh_message_auth_pubkey().Andreas Schneider2011-08-301-0/+3
|
* legacy: Move ssh_private_key and ssh_public_key typedefs.Andreas Schneider2011-08-281-1/+0
|
* server: Migrate more functions to new pki.Andreas Schneider2011-08-221-0/+13
|
* Implemented X11 server sidemilo2011-04-141-0/+7
|
* messages: Make returned strings const.Andreas Schneider2011-03-091-11/+11
|
* doc: More doc for messaging functions.Andreas Schneider2011-03-091-1/+37
|
* doc: Improve the doc of ssh_bind_set_callbacks.Andreas Schneider2011-03-091-0/+20
|
* doc: Improved documentation for server options.Andreas Schneider2011-03-061-4/+57
|
* legacy: Added missing channel_write_stderr.Andreas Schneider2011-02-231-0/+2
|
* Added the keyboard-interactive authentication methodmilo2011-02-101-0/+5
|
* server: Remove channel_write_stderr.Andreas Schneider2010-12-081-2/+0
|
* doc: Some small fixes in server.h.Andreas Schneider2010-12-071-11/+6
|
* start of work to have callbackbased ssh_bindAris Adamantiadis2010-10-191-1/+30
|
* Added ssh_channel_write_stderr() for the servermilo2010-10-021-0/+3
|
* Added channel features on the servermilo2010-10-021-0/+8
| | | | | | | - ssh_channel_request_send_exit_status() - ssh_channel_request_send_exit_signal() - enhanced these features client-side
* Handle global requests and reverse forwardingmilo2010-10-021-0/+9
|
* server: Fixed a shadowed variable.Andreas Schneider2010-09-051-1/+1
|
* server: Added an API entry for the message callback.Milo Jhoran2010-08-131-1/+3
| | | | Signed-off-by: Andreas Schneider <asn@cynapses.org>
* server: Split ssh_bind_accept and create ssh_handle_key_exchange.milo2010-08-101-1/+10
| | | | Signed-off-by: Andreas Schneider <asn@cynapses.org>
* server: Make ssh_accept a depreacted function to not break the API.Andreas Schneider2010-08-091-0/+3
|
* server: Merge ssh_bind_accept.Andreas Schneider2010-08-091-11/+0
|
* server: Rename ssh_accept to ssh_bind_accept.Andreas Schneider2010-08-091-2/+4
|
* Fixed the group of the server functions.Andreas Schneider2010-04-041-2/+2
|
* added ssh_message_auth_reply_pk_ok_simpleAris Adamantiadis2009-12-201-0/+2
|
* Add key validation in server side authenticationAris Adamantiadis2009-12-201-0/+1
|
* Fix some doxygen errorsAris Adamantiadis2009-12-091-3/+6
|
* Fix warnings on old gcc'sAris Adamantiadis2009-11-031-14/+14
| | | | they don't like variable names having type names
* Added option to set log_verbosity in the server.Andreas Schneider2009-10-151-1/+3
|
* Added an option to set the port as string.Andreas Schneider2009-10-151-0/+1
|
* No more SSH_BIND SSH_MESSAGE etc.Aris Adamantiadis2009-10-091-11/+12
|
* Moved samples into examples directoryAris Adamantiadis2009-10-091-1/+2
|
* Modified server APIAris Adamantiadis2009-10-091-1/+1
|
* Get rid of the options structure.Andreas Schneider2009-10-021-4/+15
|
* Get rid of SSH_MESSAGEAris Adamantiadis2009-09-231-23/+23
|
* get rid of SSH_OPTIONSAris Adamantiadis2009-09-231-1/+1
|
* get rid of SSH_SESSIONAris Adamantiadis2009-09-231-3/+3
|
* experimental callback systemAris Adamantiadis2009-08-231-1/+1
|
* Fix compilation with MSVC and use declspec to export functions.Andreas Schneider2009-08-111-35/+35
| | | | Thanks to Patrick Spendrin <ps_ml@gmx.de> for all the MSVC fixes.
* Fixed libssh compilation without server support.Andreas Schneider2009-07-311-37/+0
|
* Move channel_write_stderr to server.c.Andreas Schneider2009-07-291-0/+2
|
* Add channel_write_stderr prototype to the right header file.Andreas Schneider2009-07-291-2/+0
| | | | Signed-off-by: Andreas Schneider <mail@cynapses.org>
* Fleshed out server interfacePreston A. Elder2009-07-291-8/+27
| | | | | | | | | | | | - Enables channel_request_open types of DIRECT_TCPIP, FORWARDED_TCPIP and X11 (ie. implemented the handling of those channel_request_open types). - Adds functions to retrieve the extra information relating to channel_request_open messages and channel_request messages. - Adds a channel_write_stderr method (obviously for writing to the STDERR channel from server side) - well, technically just converted the exiting channel_write to take an extra argument and created two wrapper functions. - Actually does the invoking of message_handle() from channel_recv_request. - Implemented the handling of the window-change and env channel_requests. - Implemented a few functions in server.h that were declared but not defined (eg. ssh_message_channel_request_channel). Signed-off-by: Preston A. Elder <prez@neuromancy.net> Signed-off-by: Andreas Schneider <mail@cynapses.org>
* Public key authentication server sidemilo2009-07-271-0/+2
|
* Fix conflicting declarations of ssh_session and ssh_kbdint.Andreas Schneider2009-07-251-1/+1
|