mirror of
https://git.libssh.org/projects/libssh.git
synced 2025-04-19 02:24:03 +03:00
11 lines
214 B
C++
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;
|
|
}
|