summaryrefslogtreecommitdiffstats
path: root/include/libssh/libssh.h
Commit message (Collapse)AuthorAgeFilesLines
* Fixed spelling.Andreas Schneider2010-03-251-1/+1
|
* Fixed and added support for several identity files.Andreas Schneider2010-03-041-0/+5
|
* Increase version number.Andreas Schneider2010-02-051-1/+1
|
* Merged the channel_request hdlrs and clean hdlrsAris Adamantiadis2010-01-081-1/+0
|
* 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>
* Add key validation in server side authenticationAris Adamantiadis2009-12-201-0/+7
|
* 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.
* Fixed uint* to work on Windows.Andreas Schneider2009-12-011-0/+4
| | | | Thanks to Patrick Spendrin.
* Pcap: more cleanup and minimalist APIAris Adamantiadis2009-11-161-1/+6
|
* Added an option to set log verbosity as string.Andreas Schneider2009-11-101-0/+1
|
* Improve MSVC support. Better binary compatibility.Andreas Schneider2009-11-061-1/+1
| | | | Patch by Patrick Spendrin from KDE.
* ssh_disconnect doesn't free the session anymoreAris Adamantiadis2009-10-091-0/+1
|
* Last nail on SSH_OPTIONS, SSH_SESSION etc.Aris Adamantiadis2009-10-091-14/+1
|
* get rid of the option structureAris Adamantiadis2009-10-091-5/+4
|
* Fixed ssh_options_copy().Andreas Schneider2009-10-041-1/+1
|
* Get rid of the options structure.Andreas Schneider2009-10-021-30/+12
|
* Fix warnings on opensolarisAris Adamantiadis2009-09-291-1/+1
|
* resolve warning on opensolarisAris Adamantiadis2009-09-291-1/+1
|
* more priv.h splittingAris Adamantiadis2009-09-261-2/+0
|
* Change #defines to enums when it makes senseAris Adamantiadis2009-09-231-48/+63
|
* Get rid of SSH_MESSAGEAris Adamantiadis2009-09-231-7/+7
|
* get rid of SSH_OPTIONSAris Adamantiadis2009-09-231-23/+23
|
* get rid of SSH_SESSIONAris Adamantiadis2009-09-231-39/+39
|
* remove the broken setters for options,cb init macroAris Adamantiadis2009-09-231-7/+0
|
* Changed the current callback sys to be scalableAris Adamantiadis2009-09-231-25/+0
|
* Ordered functions in libssh.h alphabeticalyAris Adamantiadis2009-09-231-242/+179
|
* Fix typos in SSH_OPTIONSAris Adamantiadis2009-09-231-6/+6
|
* Added a cleaned up interface for setting options.Andreas Schneider2009-09-221-0/+39
|
* Added a userdata generic pointer to the log callback function.Andreas Schneider2009-09-221-1/+4
|
* Fixed building libssh with MSVC.Andreas Schneider2009-09-211-0/+1
| | | | Thanks to Carlo Segato for the patch.
* Added support for ~/.ssh/config.Andreas Schneider2009-09-151-0/+1
|
* SCP warning requestAris Adamantiadis2009-09-131-0/+1
|
* scp recursive modeAris Adamantiadis2009-09-131-2/+7
|
* Add better error detection + EOF requestAris Adamantiadis2009-09-131-1/+3
|
* Change scp API to use integers for permsAris Adamantiadis2009-09-131-9/+9
|
* Support for sending signals (RFC 4254, section 6.9).Dmitry V. Krivenok2009-09-101-0/+1
| | | | | | | | | | Added function int channel_request_send_signal(ssh_channel channel, const char *signal); which implements signals delivery (as described in RFC 4254). Only SSH-v2 is currently supported. Signed-off-by: Dmitry V. Krivenok <krivenok@orangesystem.ru> Signed-off-by: Andreas Schneider <mail@cynapses.org>
* Add a portable ssh_mkdir function for Windows.Andreas Schneider2009-09-091-0/+1
|
* ssh_scp_request_get_{filename,permissions,size}Aris Adamantiadis2009-08-231-0/+3
|
* added ssh_scp_readAris Adamantiadis2009-08-231-0/+2
|
* Implementation of ssh_scp_pull_requestAris Adamantiadis2009-08-231-4/+5
| | | | | | | | | | | Still needed: code in ssh_scp_init, implementation of ssh_scp_read ssh_scp_request_get_filename, ssh_scp_request_get_size, ssh_scp_request_get_mode, ssh_scp_deny_request ssh_scp_accept_request !!
* Merge branch 'master' of git://git.libssh.org/projects/libssh/libsshAris Adamantiadis2009-08-231-0/+18
|\ | | | | | | | | Conflicts: include/libssh/priv.h
| * Pending workAris Adamantiadis2009-08-231-0/+2
| |
| * added ssh_scp_request_new,ssh_scp_request_structAris Adamantiadis2009-08-231-0/+7
| |
| * add ssh_scp_push_directory,ssh_scp_leave_directoryAris Adamantiadis2009-08-231-0/+2
| | | | | | | | Not yet carefully tested
| * Make the functions public.Andreas Schneider2009-08-211-2/+2
| |
| * Added ssh_basename() and ssh_dirname().Andreas Schneider2009-08-211-0/+4
| |
| * Add forward listening featureVic Lee2009-08-161-0/+3
| | | | | | | | Signed-off-by: Andreas Schneider <mail@cynapses.org>
* | experimental callback systemAris Adamantiadis2009-08-231-1/+2
|/
* Set version number to 0.4.0.Andreas Schneider2009-08-121-1/+1
|
* Fix static build.Andreas Schneider2009-08-111-14/+18
| | | | | | | If you want to link against the static library you have to define LIBSSH_STATIC and link against ssh_static. gcc -static -DLIBSSH_STATIC -lssh_static foo.c -o foo