summaryrefslogtreecommitdiffstats
path: root/libssh
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix possible memory corruption (#14)milo2009-08-067-24/+24
| | | | Signed-off-by: Andreas Schneider <mail@cynapses.org>
* Remove ssh_fd_poll from map file.Andreas Schneider2009-08-052-2/+0
|
* Don't use the map file if the build type is debug.Andreas Schneider2009-08-011-2/+2
|
* Fixed libssh compilation without server support.Andreas Schneider2009-07-313-344/+345
|
* Add x11 forwarding support for ssh clientVic Lee2009-07-313-0/+122
| | | | | Signed-off-by: Vic Lee <llyzs@163.com> Signed-off-by: Andreas Schneider <mail@cynapses.org>
* Cleanup the map file and oder it alphabetically.Andreas Schneider2009-07-301-68/+189
|
* Export public functions on Windows.Andreas Schneider2009-07-302-0/+208
|
* Fix build with MSVC.Andreas Schneider2009-07-3014-109/+124
|
* Compile the library with the map file again.Andreas Schneider2009-07-301-0/+9
|
* Add missing functions to map file.Andreas Schneider2009-07-301-9/+12
|
* Move channel_write_stderr to server.c.Andreas Schneider2009-07-292-18/+18
|
* Fix indent.Andreas Schneider2009-07-291-2/+2
|
* Update map file and introduce a new version.Andreas Schneider2009-07-291-2/+23
| | | | Signed-off-by: Andreas Schneider <mail@cynapses.org>
* Add channel_write_stderr prototype to the right header file.Andreas Schneider2009-07-291-1/+2
| | | | Signed-off-by: Andreas Schneider <mail@cynapses.org>
* Fix build errors in new messages functions.Andreas Schneider2009-07-291-4/+3
| | | | Signed-off-by: Andreas Schneider <mail@cynapses.org>
* Fleshed out server interfacePreston A. Elder2009-07-293-17/+246
| | | | | | | | | | | | - 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>
* Add functions to get the extension count, name and data.Andreas Schneider2009-07-281-0/+32
|
* Add support to read and store sftp extensions.Andreas Schneider2009-07-281-21/+117
|
* Check for OpenSSH and implement sftp_symlink correct.Andreas Schneider2009-07-282-5/+59
| | | | | | | | When OpenSSH's sftp-server was implemented, the order of the arguments to the SSH_FXP_SYMLINK method was inadvertently reversed. Unfortunately, the reversal was not noticed until the server was widely deployed. Since fixing this to follow the specification would cause incompatibility, the current order was retained.
* Fix SSH1 compilation.Andreas Schneider2009-07-276-26/+30
|
* Fix stdint type.Andreas Schneider2009-07-271-1/+1
|
* Fix SSH1 and stdint in SSH1 code.Andreas Schneider2009-07-271-11/+11
|
* Fix potential memory corruption bugmilo2009-07-271-0/+5
|
* Fix compile errors in keyfiles.Andreas Schneider2009-07-271-8/+8
|
* Public key authentication server sidemilo2009-07-273-5/+157
|
* Add ssh_file_readaccess_ok to check read access on a file.Andreas Schneider2009-07-271-0/+9
|
* Add a function to close the socket.Andreas Schneider2009-07-271-5/+15
| | | | This fixes ssh_connect on Windows.
* Fix a typo.Andreas Schneider2009-07-271-1/+2
|
* Switch completly to stdint types.Andreas Schneider2009-07-2515-189/+189
|
* Fix conflicting declarations of ssh_session and ssh_kbdint.Andreas Schneider2009-07-257-17/+17
|
* Fix return value of sftp_tell64().Andreas Schneider2009-07-251-1/+1
|
* Update map file for ssh_clean_pubkey_hash;Andreas Schneider2009-07-251-1/+1
|
* Add a sftp_tel64() function.Andreas Schneider2009-07-252-1/+6
|
* Add ssh_clean_pubkey_hash() which is needed on Windows.Andreas Schneider2009-07-251-0/+16
|
* Update map file.Andreas Schneider2009-07-251-0/+1
|
* Add sftp_readlink function.Andreas Schneider2009-07-251-0/+74
|
* Add sftp_symlink function.Andreas Schneider2009-07-251-0/+83
|
* Missed something in channel_select for CHANNELAris Adamantiadis2009-07-241-1/+1
|
* Change refs from AGENT * to ssh_agentAris Adamantiadis2009-07-241-4/+4
| | | | Fixes also a typo in ssh_agent declaration
* Changes all CHANNEL * to ssh_channelAris Adamantiadis2009-07-245-69/+69
|
* Change PRIVATE_KEY * to ssh_private_keyAris Adamantiadis2009-07-245-17/+17
|
* Changed all PUBLIC_KEY * to ssh_public_keyAris Adamantiadis2009-07-246-24/+24
|
* Changed all occurences of BUFFER * to ssh_bufferAris Adamantiadis2009-07-2412-84/+84
|
* You always forget SSH1 ...Aris Adamantiadis2009-07-242-17/+17
|
* Change all occurences of STRING * to ssh_stringAris Adamantiadis2009-07-2413-200/+200
|
* replacing keys_struct with ssh_keys_structAris Adamantiadis2009-07-242-2/+2
|
* Fixed namespace problem in public structuresAris Adamantiadis2009-07-246-60/+60
| | | | | | | | | changed struct string_struct to ssh_string_struct buffer_struct to ssh_buffer_struct and so on. Should not break apps using the caps version of these
* Fix a possible segfault in sftp_canonicalize_path().Andreas Schneider2009-07-231-0/+4
|
* Fix getaddrinfo and gethostbyname build problems on Solaris.Andreas Schneider2009-07-231-0/+14
|
* Fix a segfault if a NULL pointer is passed to ssh_disconnect().Andreas Schneider2009-07-221-3/+2
|