1
1
The SSH library (LGPL license) https://www.libssh.org
Перейти к файлу
2010-09-07 09:54:42 +02:00
build Added the client unit testing information 2010-07-23 11:04:09 +02:00
cmake/Modules build: Added support to find argp on BSD. 2010-09-03 15:38:12 +02:00
doc doc: More work on the tutorial. 2010-09-07 09:54:42 +02:00
examples Added a SSH_NO_CPP_EXCEPTIONS mode to libsshpp.h 2010-08-27 11:53:38 +02:00
include Implemented the noop and native pointers 2010-09-06 16:52:14 +02:00
src Implemented the noop and native pointers 2010-09-06 16:52:14 +02:00
tests Implemented the noop and native pointers 2010-09-06 16:52:14 +02: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 misc: Rename libssh/ to src/ 2010-09-06 14:28:38 +02:00
config.h.cmake build: Fixed checking for printf function on Windows. 2010-09-02 11:50:21 +02:00
ConfigureChecks.cmake threads: Build a libssh threading library. 2010-09-06 15:17:03 +02:00
COPYING legal paperwork to be 100% respectful of LGPL, about openssl's 2008-06-16 13:58:56 +00:00
CPackConfig.cmake build: Added a check for NSIS. 2010-08-03 18:13:59 +02:00
CTestConfig.cmake ctest: Update config file for new cdash board. 2010-06-20 10:29:25 +02:00
DefineOptions.cmake tests: Move client tests to a seperate directory. 2010-06-03 12:36:00 +02:00
INSTALL Improve the INSTALL file. 2009-05-07 08:32:50 +00:00
libssh.pc.cmake Add pkg-config file libssh.pc 2009-12-30 19:05:48 +01:00
README Added the copyright policy to the README. 2010-04-07 11:29:47 +02:00

Этот файл содержит неоднозначные символы Юникода

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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");

5* Copyright policy
-_-_-_-_-_-_-_-_-_-_

The developers of libssh have a policy of asking for contributions to be made
under the personal copyright of the contributor, instead of a corporate
copyright.

There are some reasons for the establishment of this policy:

    * Individual copyrights make copyright registration in the US a simpler
      process.
    * If libssh is copyrighted by individuals rather than corporations,
      decisions regarding enforcement and protection of copyright will, more
      likely, be made in the interests of the project, and not in the interests
      of any corporations shareholders.
    * If we ever need to relicense a portion of the code contacting individuals
      for permission to do so is much easier than contacting a company.