aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2009-12-10Update version to 0.4.0.release-0-4-0Andreas Schneider2-3/+3
2009-12-10Don't install crypto.h which is an internal header file.Andreas Schneider1-1/+0
2009-12-09Remove socklen_t definition.Andreas Schneider1-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.
2009-12-02Fix stupid bug which stops log_verbosity workingAris Adamantiadis1-0/+1
2009-12-02Fixed indent.Andreas Schneider1-2/+2
2009-12-02Added gettimeofday for Windows.Andreas Schneider3-0/+23
Thanks to Patrick Spendrin.
2009-12-02Fixed uint* to work on Windows.Andreas Schneider3-21/+25
Thanks to Patrick Spendrin.
2009-11-19Build the pcap source only if enabled.Andreas Schneider1-1/+8
2009-11-18Fix compile bug introduced by another bugfixAris Adamantiadis1-1/+1
2009-11-18Fix another memleakAris Adamantiadis1-1/+1
Use buffer_free instead of SAFE_FREE
2009-11-18Fixed possible doulbe free problem found by Bernhard R. Link.Andreas Schneider1-0/+4
2009-11-18Added more error messages and checking to handle_channel_request.Andreas Schneider1-0/+28
2009-11-18Fixed a memory leak in channel_new() if we have an error.Andreas Schneider1-0/+1
2009-11-16Pcap: more cleanup and minimalist APIAris Adamantiadis5-15/+36
2009-11-16Pcap: Fix bug with non-encrypted incoming packetsAris Adamantiadis1-0/+11
2009-11-16Improved pcap dumping supportAris Adamantiadis6-21/+170
2009-11-12Improve standard logging.Andreas Schneider2-1/+5
2009-11-12Fixed setting the timeout and ssh2 and ssh1 option.Andreas Schneider1-4/+4
2009-11-12Fixed setting the log verbosity.Andreas Schneider1-2/+2
2009-11-10Added an option to set log verbosity as string.Andreas Schneider2-0/+32
2009-11-09Always use the poll-emulation on Windows.Andreas Schneider1-1/+2
Until we we have a solution to use WSAPoll only on Vista and newer.
2009-11-09Added explanation in ssh_silent_disconnect doxygenAris Adamantiadis1-1/+2
2009-11-08First lines of experimental pcap output supportAris Adamantiadis9-1/+396
This will serve to debug packets right under wireshark !
2009-11-08Add an other (simplier ?) polling method to sampleAris Adamantiadis1-0/+103
2009-11-07change buffer size in sample.cAris Adamantiadis1-2/+2
2009-11-07Refactorize sample.cAris Adamantiadis2-121/+45
2009-11-07move authentication out of sampe.cAris Adamantiadis2-77/+7
2009-11-06Moved sftp parts into a new exampleAris Adamantiadis3-209/+274
2009-11-06Update structures name to new conventionAris Adamantiadis2-45/+45
SSH_POLL* -> ssh_poll_handle, SSH_POLL_CTX* -> ssh_poll_ctx
2009-11-06Improve MSVC support. Better binary compatibility.Andreas Schneider2-2/+2
Patch by Patrick Spendrin from KDE.
2009-11-05A few test cases for benchmarksAris Adamantiadis3-0/+36
2009-11-05Fixed compilation of samplesshd.Andreas Schneider1-0/+2
2009-11-05Merge branch 'master' of git://git.libssh.org/projects/libssh/libsshAndreas Schneider8-32/+43
2009-11-05channel_read() won't block until count b. are readAris Adamantiadis1-4/+6
2009-11-05Forgot to update config.h.cmakeAris Adamantiadis1-0/+3
2009-11-03Fix compilation on freebsd 6.0 which lacks argp.hAris Adamantiadis2-2/+8
2009-11-03Fix warnings on old gcc'sAris Adamantiadis2-19/+19
they don't like variable names having type names
2009-11-03Fix openssl header inclusionAris Adamantiadis2-7/+7
caused cbc_encrypt to be redefined by an openssl macro
2009-10-29Increase package version.Andreas Schneider1-1/+1
2009-10-29Fixed setting knownhosts in ssh_is_server_known().Andreas Schneider1-5/+7
2009-10-29Fixed a segfault on Windows.Andreas Schneider1-1/+1
2009-10-29Make libssh_scp a little more consistantAris Adamantiadis1-19/+18
2009-10-29Fix server kex againAris Adamantiadis3-5/+6
2009-10-29Fix server kexAris Adamantiadis1-6/+3
2009-10-25improve error reporting of sftp.cBernhard R. Link1-37/+203
Signed-off-by: Andreas Schneider <mail@cynapses.org>
2009-10-25buffer_get_data returns 0 on error, so checking buffer_get_u* for < 0 makes ↵Bernhard R. Link2-2/+2
no sense Signed-off-by: Andreas Schneider <mail@cynapses.org>
2009-10-23fix stupid bugAris Adamantiadis1-1/+1
2009-10-23Compatibility with (broken) sftp version 2 protocolsAris Adamantiadis1-10/+35
2009-10-23Add missing free.Andreas Schneider1-0/+1
2009-10-22Fix memory leaks in ssh_bind_options_set() if called twice.Andreas Schneider1-0/+3
This fixes ticket #36.