0

私は現在、C++ で動作する tls websocket クライアントを取得しようとしています (これはお尻の痛みです)。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;
    }
}
4

1 に答える 1