1
1
The SSH library (LGPL license) https://www.libssh.org
Перейти к файлу
2009-12-15 23:53:28 +01:00
build Added Solaris support for the build script. 2009-09-16 14:47:45 +02:00
cmake/Modules Fixed setting of LFS CFLAGS. 2009-10-02 20:19:48 +02:00
doc These docs are outdated too 2009-12-15 23:53:28 +01:00
examples Fix strange error message in sample authentication 2009-12-13 19:53:32 +01:00
include Made packet_wait issue warnings 2009-12-13 20:49:47 +01:00
libssh Made packet_wait issue warnings 2009-12-13 20:49:47 +01:00
tests struct socket -> struct ssh_socket_struct +typedef 2009-12-06 22:48:56 +01:00
.gitignore Add a git ignore file. 2009-06-19 10:25:51 +02:00
AUTHORS updated changelog + authors 2009-05-18 18:39:26 +00:00
BSD added a file from openssh needed for known host parsing 2008-11-02 23:46:55 +00:00
ChangeLog Added changelog entries for 0.4 rc2. 2009-11-20 16:11:17 +01:00
CMakeLists.txt Moved samples into examples directory 2009-10-09 21:44:05 +02:00
config.h.cmake First lines of experimental pcap output support 2009-11-08 23:42:41 +01:00
ConfigureChecks.cmake Fix compilation on freebsd 6.0 which lacks argp.h 2009-11-03 21:04:36 +01:00
COPYING legal paperwork to be 100% respectful of LGPL, about openssl's 2008-06-16 13:58:56 +00:00
CPackConfig.cmake Added changelog entries for 0.4 rc2. 2009-11-20 16:11:17 +01:00
DefineOptions.cmake Compile with pcap support by default 2009-11-27 18:18:12 +01:00
Doxyfile Undo the remove of the Doxyfiles. 2009-03-28 22:20:54 +00:00
Doxyfile.internal Undo the remove of the Doxyfiles. 2009-03-28 22:20:54 +00:00
INSTALL Improve the INSTALL file. 2009-05-07 08:32:50 +00:00
README Add API changes to README. 2009-10-13 22:23:06 +02:00

libssh: the SSH library
~~~~~~~~~~~~~~~~~~~~~~~

1* Why ?
-_-_-_-_-_

Why not ? :) I've began to work on my own implementation of the ssh protocol
because i didn't like the currently public ones.
Not any allowed you to import and use the functions as a powerful library, 
and so i worked on a library-based SSH implementation which was non-existing
in the free and open source software world.


2* How/Who ?
-_-_-_-_-_-_-_

If you downloaded this file, you must know what it is : a library for
accessing ssh client services through C libraries calls in a simple manner.
Everybody can use this software under the terms of the LGPL - see the COPYING
file

If you ask yourself how to compile libssh, please read INSTALL before anything.

3* Where ?
-_-_-_-_-_-_

http://www.libssh.org

4* API Changes !
-_-_-_-_-_-_-_-_-_

Changes between 0.3 and 0.4
---------------------------

We changed libssh to be typesafe now:

SSH_SESSION *session -> ssh_session session
SFTP_SESSION *sftp -> sftp_session sftp
CHANNEL *channel -> ssh_channel channel
STRING *string -> ssh_string string
...

The options structure has been removed and there is a new function. This
function can set all available options now. You can find the enum in the
header file and it is documented. Example:

ssh_options_set(session, SSH_OPTIONS_HOST, "localhost");