├── .clang-format ├── .github └── workflows │ └── cmake.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cmake └── QLibssh2Config.cmake.in ├── conanfile.py ├── src ├── Ssh2Channel.cpp ├── Ssh2Channel.h ├── Ssh2Client.cpp ├── Ssh2Debug.cpp ├── Ssh2Debug.h ├── Ssh2LocalPortForwarding.cpp ├── Ssh2Process.cpp ├── Ssh2Scp.cpp ├── Ssh2Types.cpp └── include │ ├── Ssh2Client.h │ ├── Ssh2LocalPortForwarding.h │ ├── Ssh2Process.h │ ├── Ssh2Scp.h │ └── Ssh2Types.h └── test_package ├── CMakeLists.txt ├── conanfile.py └── example.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeruntu/qlibssh2/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/cmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeruntu/qlibssh2/HEAD/.github/workflows/cmake.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeruntu/qlibssh2/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeruntu/qlibssh2/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeruntu/qlibssh2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeruntu/qlibssh2/HEAD/README.md -------------------------------------------------------------------------------- /cmake/QLibssh2Config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeruntu/qlibssh2/HEAD/cmake/QLibssh2Config.cmake.in -------------------------------------------------------------------------------- /conanfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeruntu/qlibssh2/HEAD/conanfile.py -------------------------------------------------------------------------------- /src/Ssh2Channel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeruntu/qlibssh2/HEAD/src/Ssh2Channel.cpp -------------------------------------------------------------------------------- /src/Ssh2Channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeruntu/qlibssh2/HEAD/src/Ssh2Channel.h -------------------------------------------------------------------------------- /src/Ssh2Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeruntu/qlibssh2/HEAD/src/Ssh2Client.cpp -------------------------------------------------------------------------------- /src/Ssh2Debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeruntu/qlibssh2/HEAD/src/Ssh2Debug.cpp -------------------------------------------------------------------------------- /src/Ssh2Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeruntu/qlibssh2/HEAD/src/Ssh2Debug.h -------------------------------------------------------------------------------- /src/Ssh2LocalPortForwarding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeruntu/qlibssh2/HEAD/src/Ssh2LocalPortForwarding.cpp -------------------------------------------------------------------------------- /src/Ssh2Process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeruntu/qlibssh2/HEAD/src/Ssh2Process.cpp -------------------------------------------------------------------------------- /src/Ssh2Scp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeruntu/qlibssh2/HEAD/src/Ssh2Scp.cpp -------------------------------------------------------------------------------- /src/Ssh2Types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeruntu/qlibssh2/HEAD/src/Ssh2Types.cpp -------------------------------------------------------------------------------- /src/include/Ssh2Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeruntu/qlibssh2/HEAD/src/include/Ssh2Client.h -------------------------------------------------------------------------------- /src/include/Ssh2LocalPortForwarding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeruntu/qlibssh2/HEAD/src/include/Ssh2LocalPortForwarding.h -------------------------------------------------------------------------------- /src/include/Ssh2Process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeruntu/qlibssh2/HEAD/src/include/Ssh2Process.h -------------------------------------------------------------------------------- /src/include/Ssh2Scp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeruntu/qlibssh2/HEAD/src/include/Ssh2Scp.h -------------------------------------------------------------------------------- /src/include/Ssh2Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeruntu/qlibssh2/HEAD/src/include/Ssh2Types.h -------------------------------------------------------------------------------- /test_package/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeruntu/qlibssh2/HEAD/test_package/CMakeLists.txt -------------------------------------------------------------------------------- /test_package/conanfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeruntu/qlibssh2/HEAD/test_package/conanfile.py -------------------------------------------------------------------------------- /test_package/example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeruntu/qlibssh2/HEAD/test_package/example.cpp --------------------------------------------------------------------------------