Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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.