aboutsummaryrefslogtreecommitdiff
path: root/libssh
AgeCommit message (Collapse)AuthorFilesLines
2009-09-23Moved lots of declaration out of priv.hAris Adamantiadis28-24/+104
2009-09-23Get rid of SSH_MESSAGEAris Adamantiadis4-56/+55
2009-09-23get rid of SSH_OPTIONSAris Adamantiadis5-37/+36
2009-09-23get rid of SSH_SESSIONAris Adamantiadis21-191/+189
2009-09-23Changed the current callback sys to be scalableAris Adamantiadis4-59/+29
2009-09-23Fix typos in SSH_OPTIONSAris Adamantiadis1-7/+7
2009-09-22Fixed bindport in getop function.Andreas Schneider1-3/+7
2009-09-22Added handling of bindport in getopt.Andreas Schneider1-1/+9
2009-09-22fix copy&paste errorBernhard R. Link1-2/+2
Signed-off-by: Andreas Schneider <mail@cynapses.org>
2009-09-22Use new ssh options interface in auth functions.Andreas Schneider2-8/+8
2009-09-22Use new ssh options interface in keyfiles.Andreas Schneider1-3/+3
2009-09-22Use new options interface in server code.Andreas Schneider1-3/+3
2009-09-22Use the new options interface in config parser.Andreas Schneider1-16/+23
2009-09-22Use the new options function in deprecated functions.Andreas Schneider1-202/+35
2009-09-22Added a cleaned up interface for setting options.Andreas Schneider1-79/+508
2009-09-22Added a userdata generic pointer to the log callback function.Andreas Schneider2-5/+7
2009-09-21Added more logging output for publickey auth.Andreas Schneider2-6/+14
2009-09-21Fixed building libssh with MSVC.Andreas Schneider2-5/+14
Thanks to Carlo Segato for the patch.
2009-09-19Fix binding found by Bernhard R. LinkAris Adamantiadis1-1/+1
2009-09-16Limit the size of acceptable compressed packetsAris Adamantiadis2-5/+9
2009-09-15Improve documentation of ssh_options_parse_config().Andreas Schneider1-2/+5
2009-09-15Added support for ~/.ssh/config.Andreas Schneider3-0/+341
2009-09-15Fixed build with mingw.Andreas Schneider1-1/+1
2009-09-14Merge branch 'master' of git://git.libssh.org/projects/libssh/libsshAris Adamantiadis1-4/+1
2009-09-14Add warning in channel_open_forward documentationAris Adamantiadis1-0/+3
Tell users it does not do magic (yet)
2009-09-14Fix a possible stack overflow in agent code.Andreas Schneider1-4/+1
2009-09-13Fix the security bug found by Orange LabsAris Adamantiadis1-2/+8
Verify the length of decrypt operation is a multiple of blocksize
2009-09-13SCP warning requestAris Adamantiadis1-0/+11
2009-09-13scp recursive modeAris Adamantiadis1-9/+19
2009-09-13Add better error detection + EOF requestAris Adamantiadis1-5/+64
2009-09-13Fix scp pull bug + scp loggingAris Adamantiadis1-11/+21
2009-09-13fix ssh_scp_string_mode() bug + debug msgsAris Adamantiadis1-2/+5
2009-09-13Change scp API to use integers for permsAris Adamantiadis1-17/+40
2009-09-10Fixed fstatvfs function.Andreas Schneider1-2/+2
2009-09-10Reformat lowercase function.Andreas Schneider1-4/+7
2009-09-10Fixed possible memory leak in lowercase function.Dmitry V. Krivenok1-4/+5
If user passed NULL pointer to lowercase() function, duplicated string "new" wasn't freed before return. Signed-off-by: Dmitry V. Krivenok <krivenok@orangesystem.ru> Signed-off-by: Andreas Schneider <mail@cynapses.org>
2009-09-10Fixed "var is uninitialized" bug.Dmitry V. Krivenok1-1/+1
gcc-4.4.1 reported: /home/krivenok/dev_builds/libssh/libssh/sftp.c:2700: warning: 'sftp' is used uninitialized in this function sftp is NULL-initialized now. Signed-off-by: Dmitry V. Krivenok <krivenok@orangesystem.ru> Signed-off-by: Andreas Schneider <mail@cynapses.org>
2009-09-10Support for sending signals (RFC 4254, section 6.9).Dmitry V. Krivenok1-0/+51
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>
2009-09-09Add a portable ssh_mkdir function for Windows.Andreas Schneider2-1/+26
2009-09-03Fix the free calls and use the safe free macro.Andreas Schneider1-6/+6
2009-09-03Add missing NULL pointer checks to crypt_set_algorithms_server.Andreas Schneider1-4/+5
Thanks to Orange Labs for the report.
2009-09-03Fix an integer overflow in buffer_get_data().Andreas Schneider1-2/+7
Thanks to Orange Labs for the report.
2009-08-29Fix "void * ptr used in pointer arithmetic" warngAris Adamantiadis2-6/+6
2009-08-29Change SSH_LOG_RARE to SSH_LOG_PACKET in packet.cAris Adamantiadis1-8/+8
2009-08-26Fix ssh_write_knownhost() if ~/.ssh doesn't exist.Andreas Schneider1-3/+22
2009-08-25Fix linking on solaris.Andreas Schneider1-7/+1
libresolv and librt are required.
2009-08-25Fix poll sturct, ISO C doesn't allow unnamed unions.Andreas Schneider1-13/+13
2009-08-25Fix typedef collisons on Solaris.Andreas Schneider2-10/+10
2009-08-24buffer initialization changeAris Adamantiadis1-2/+1
2009-08-23fix memleak through requestsAris Adamantiadis1-0/+2