1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-04-19 02:24:03 +03:00
libssh/examples/libsshpp.cpp
2010-01-21 21:54:20 +01:00

11 lines
214 B
C++

#include <libssh/libsshpp.hpp>
int main(int argc, const char **argv){
ssh::Session session;
session.setOption(SSH_OPTIONS_HOST,"localhost");
session.connect();
session.userauthAutopubkey();
return 0;
}