Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rubdos/libssh2pp
A C++ libssh2 wrapper. In modern C++11
https://github.com/rubdos/libssh2pp
Last synced: 2 months ago
JSON representation
A C++ libssh2 wrapper. In modern C++11
- Host: GitHub
- URL: https://github.com/rubdos/libssh2pp
- Owner: rubdos
- License: gpl-3.0
- Created: 2013-05-08T10:42:56.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2020-08-15T06:41:37.000Z (over 4 years ago)
- Last Synced: 2024-10-04T13:43:51.585Z (3 months ago)
- Language: C++
- Size: 19.5 KB
- Stars: 20
- Watchers: 5
- Forks: 6
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
libssh2pp
=========libssh2pp is a C++11 wrapper around the libssh2 library. It aims to be thread safe, simple to use and to have no dependencies.
usage
=====
The library is completely implemented in one .hpp file; the only thing you have to do is to put the header libssh2.hpp in your include path and use:
```
#include
```
or
```
#include "libssh2.hpp"
```
depending on where it is located.example usage
=============
refer to the tests.cpp file; you can build the tests.cpp as following:
```
mkdir build
cd build
cmake ..
make
```a resulting libssh2 executable will be in the build directory.