此处有人经历过libssh C++ wrapper吗?您可以使用0.6.3版本获取here我。我按照下载文件中的INSTALL指令来构建库。
然后我尝试编译示例目录libsshpp.cpp
中的示例#include <iostream>
#include <string>
#include <libssh/libsshpp.hpp>
int main(int argc, const char **argv){
ssh::Session session;
try {
if(argc>1)
session.setOption(SSH_OPTIONS_HOST,argv[1]);
else
session.setOption(SSH_OPTIONS_HOST,"localhost");
session.connect();
session.userauthAutopubkey();
session.disconnect();
} catch (ssh::SshException e){
std::cout << "Error during connection : ";
std::cout << e.getError() << std::endl;
}
return 0;
}
由命令g++ -o sh libsshpp.cpp -lssh
成功但执行时需要输入错误:./sh: symbol lookup error: ./sh: undefined symbol: ssh_userauth_publickey_auto
。与libssh一起工作的希望可以提供帮助!