gpt4 book ai didi

c++ - 尝试编译 boost 和 openssl 时出现编译错误(使用 Websocket++ 或 CPPRestSDK 时)

转载 作者:行者123 更新时间:2023-11-28 04:59:00 27 4
gpt4 key购买 nike

我目前正在尝试让一个工作的 tls websocket 客户端在 C++ 中运行( 这很麻烦 )并且我已经尝试过 CPP Rest SDK 和 Websocket++。两者都吐出一堆编译错误(见下文)。当我尝试使用不带 tls 的 Websocket++ 编译它时,它会编译,因此错误显然与 SSL 有关。

我尝试了不同的 OpenSSL 版本(1.0.1、1.0.2、1.1.0)、不同的 C++ 版本(11、14 甚至 17),但我就是无法编译它。

我用谷歌搜索,但没有一个解决方案有效。我在 Ubuntu 16 上,我使用的构建命令如下所示:

g++ source/* -o test.out -Iinclude/ -std=c++14 -L/lib64 -lcurl -lboost_system -lssl -lcrypto -l pthread

以下是一些错误:

/usr/include/boost/asio/ssl/detail/impl/openssl_init.ipp: In constructor ‘boost::asio::ssl::detail::openssl_init_base::do_init::do_init()’:
/usr/include/boost/asio/ssl/detail/impl/openssl_init.ipp:43:23: error: expected id-expression before ‘(’ token
mutexes_.resize(::CRYPTO_num_locks());

/usr/include/boost/asio/ssl/detail/impl/engine.ipp:221:9: error: ‘SSL_R_SHORT_READ’ was not declared in this scope
ERR_PACK(ERR_LIB_SSL, 0, SSL_R_SHORT_READ),

这是基本的源代码:

#include <websocketpp/config/asio_client.hpp>
#include <websocketpp/client.hpp>
#include <iostream>

// pull out the type of messages sent by our config
typedef websocketpp::config::asio_tls_client::message_type::ptr message_ptr;

typedef websocketpp::client<websocketpp::config::asio_tls_client> client;

using websocketpp::lib::placeholders::_1;
using websocketpp::lib::placeholders::_2;
using websocketpp::lib::bind;

void on_close(client* c, websocketpp::connection_hdl hdl) {
c->get_alog().write(websocketpp::log::alevel::app, "Connection Closed");
}

int main(int argc, char* argv[]) {
client c;

std::string uri = "wss://gateway.discord.gg/";

if (argc == 2) {
uri = argv[1];
}

try {
// set logging policy if needed
c.clear_access_channels(websocketpp::log::alevel::frame_header);
c.clear_access_channels(websocketpp::log::alevel::frame_payload);
//c.set_error_channels(websocketpp::log::elevel::none);

// Initialize ASIO
c.init_asio();

// Register our handlers
c.set_open_handler(bind(&on_open,&c,::_1));
c.set_fail_handler(bind(&on_fail,&c,::_1));
c.set_message_handler(bind(&on_message,&c,::_1,::_2));
c.set_close_handler(bind(&on_close,&c,::_1));

// Create a connection to the given URI and queue it for connection once
// the event loop starts
websocketpp::lib::error_code ec;
client::connection_ptr con = c.get_connection(uri, ec);
c.connect(con);

// Start the ASIO io_service run loop
c.run();
} catch (const std::exception & e) {
std::cout << e.what() << std::endl;
} catch (websocketpp::lib::error_code e) {
std::cout << e.message() << std::endl;
} catch (...) {
std::cout << "other exception" << std::endl;
}
}

最佳答案

这是很久以前的事了,但如果它有帮助,在 g++ cmd 参数中添加 -lcrypto -lssl 为我解决了这个问题。

关于c++ - 尝试编译 boost 和 openssl 时出现编译错误(使用 Websocket++ 或 CPPRestSDK 时),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46522040/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com