作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的本地机器上有 libssh2.so.1.0.1(.so) 二进制文件,但我的机器上没有任何头文件。
这是我一直试图通过 ssh 协议(protocol)连接到我的服务器的基本 ssh 程序。引用:How to establish a simple ssh connection with c++
现在我无法将库 (libssh2.so.1.0.1) 链接到下面的示例程序。
以下是我写的示例程序,后面有错误。
sshsample.cpp:
#include <stdlib.h>
#include <stdio.h>
int main()
{
ssh_session my_ssh_session;
int rc;
int port = 22;
int verbosity = SSH_LOG_PROTOCOL;
char *password;
// Open session and set options
my_ssh_session = ssh_new();
if (my_ssh_session == NULL)
exit(-1);
ssh_options_set(my_ssh_session, SSH_OPTIONS_HOST, "192.168.1.6");
ssh_options_set(my_ssh_session, SSH_OPTIONS_USER, "john");
ssh_options_set(my_ssh_session, SSH_OPTIONS_LOG_VERBOSITY, &verbosity);
// Connect to server
rc = ssh_connect(my_ssh_session);
if (rc != SSH_OK)
{
fprintf(stderr, "Error: %s\n", ssh_get_error(my_ssh_session));
ssh_free(my_ssh_session);
exit(-1);
}
// Authenticate ourselves
password = "pass";
rc = ssh_userauth_password(my_ssh_session, NULL, password);
if (rc != SSH_AUTH_SUCCESS)
{
fprintf(stderr, "Error authenticating with password: %s\n",
ssh_get_error(my_ssh_session));
ssh_disconnect(my_ssh_session);
ssh_free(my_ssh_session);
exit(-1);
}
ssh_disconnect(my_ssh_session);
ssh_free(my_ssh_session);
}
我用下面的命令编译了上面的文件
g++ -L. -llibssh2 -o main sshsample.cpp
但我得到以下错误
sshsample.cpp: In function 'int main()':
sshsample.cpp:8: error: 'ssh_session' was not declared in this scope
sshsample.cpp:8: error: expected `;' before 'my_ssh_session'
sshsample.cpp:11: error: 'SSH_LOG_PROTOCOL' was not declared in this scope
sshsample.cpp:14: error: 'my_ssh_session' was not declared in this scope
sshsample.cpp:14: error: 'ssh_new' was not declared in this scope
任何建议/帮助都会很有用
提前致谢...
最佳答案
您需要将 libssh2 头文件包含到调用 ssh API 的编译单元中。你不能指望编译器解决 ssh_session
的问题没有这个。如果您正确安装了该库,您应该可以访问头文件来调用它。
#include <libssh2.h>
编辑:老实说,您在示例中使用的 API 属于原始 libssh 库,我在您的示例中没有看到任何需要与 libssh2 链接的内容。
#include <libssh/libssh.h>
关于c++ - 如何将 .so 文件链接到 cpp 程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48115547/
我是一名优秀的程序员,十分优秀!