Go to file
2004-12-09 19:09:03 +00:00
include Let the calling program know what methods we support 2004-12-09 19:09:03 +00:00
src Added libssh2_session_callback_set() 2004-12-09 18:24:14 +00:00
configure.in Initial revision 2004-12-07 21:17:20 +00:00
INSTALL Basic Instructions 2004-12-08 04:11:26 +00:00
install-sh Initial revision 2004-12-07 21:17:20 +00:00
LICENSE Initial revision 2004-12-07 21:17:20 +00:00
Makefile.in Add INSTALL, and remove configure.in from 'make dist' 2004-12-08 04:12:31 +00:00
mkinstalldirs Initial revision 2004-12-07 21:17:20 +00:00
README Added libssh2_session_callback_set() 2004-12-09 18:24:14 +00:00
ssh2_sample.c Initial revision 2004-12-07 21:17:20 +00:00
TODO Initial revision 2004-12-07 21:17:20 +00:00

libssh2 - SSH2 library
======================

Version 0.2
-----------

  Changed extended data ignorance mechanism:
    libssh2_channel_ignore_extended_data() changed to libssh2_channel_handle_extended_data()
    Macro introduced for backward compatability during beta phase.
    *** THE LIBSSH2_CHANNEL_IGNORE_EXTENDED_DATA() MACRO WILL BE REMOVED PRIOR TO 1.0 RELEASE ***
    libssh2_channel_handle_extended_data() may be passed one of three "ignore_mode" constants
      LIBSSH2_CHANNEL_EXTENDED_DATA_NONE       Default behavior, queue ED packets and return them with read_ex
      LIBSSH2_CHANNEL_EXTENDED_DATA_IGNORE     Equivalent to libssh2_channel_ignore_extended_data()
                                               IGNORE will implicitly flush the extended data stream(s)
      LIBSSH2_CHANNEL_EXTENDED_DATA_MERGE      Calls to channel_read() will check both the standard data stream
                                               and the extended data stream(s) for the first available packet

  Added libssh2_channel_flush_ex() and basic macros: ..._flush() ..._flush_stderr()
    flush_ex accepts either the streamid (0 for standard data, 1 for stderr) or one of the two following constants:
      LIBSSH2_CHANNEL_FLUSH_ALL                Flush all streams
      LIBSSH2_CHANNEL_FLUSH_EXTENDED_DATA      Flush all streams EXCEPT the standard data stream

  Added libssh2_session_callback_set() for setting ignore/debug/disconnect/macerror callbacks

Version 0.1
-----------

  Initial Release:
    KEX methods: diffie-hellman-group14-sha1, diffie-hellman-group-exchange-sha1, diffie-hellman-group1-sha1
    Hostkey methods: ssh-rsa, ssh-dss
    Cipher methods: aes256-cbc, rijndael-cbc@lysator.liu.se, aes192-cbc, aes128-cbc, blowfish-cbc, arcfour, cast128-cbc, 3des-cbc, none*
    Compression methods: zlib, none
    MAC methods: hmac-sha1, hmac-sha1-96, hmac-ripemd160, hmac-ripemd160@openssh.com none*
    *Cipher/MAC "none" is disabled by default for security purposes,
     Use --enable-crypt-none and/or --enable-mac-none with ./configure to enable