赞
踩
目录
websocket官方网址:http://websocket.org/
websocket++官方网址:https://www.zaphoyd.com/websocketpp
websocket++使用手册:https://www.zaphoyd.com/websocketpp/manual/
websocketpp 是 C++ 的 WebSocket 客户端/服务器库.
它是一个开源的只包含头文件的 C++ 库,它实现了 RFC6455 WebSocket 协议。它允许向 C++ 程序中集成 WebSocket 客户端和服务器功能。它使用可交换的网络传输模块,包括基于 C++ iostreams 的和基于 Boost Asio 的。
使用websocket++库,需要websocket++的头文件及它所依赖的boost头文件及库文件。
git 网址:https://github.com/zaphoyd/websocketpp
(1)window环境可以直接在SOURCEFORGE上下载编译好的库文件。
(2)linux环境(本次在麒麟系统上验证)通过apt search boost命令找到源上的boost版本,然后使用 apt install libboost1.58-dev 将boost库安装到本地。
上文下载的websocketpp开发包中有一个examples文件夹,其中echo_client和echo_server分别是客户端和服务端的demo的代码,可参考。
(1)新建工程,将websocketpp头文件引入,在项目栏右键,将websocketpp文件夹全部加入,在工程文件(.pro)中自动加载里面的文件。如图所示:
(2)加载boost库及其头文件
window:此处写了绝对路径
- LIBS += -LF:\local\boost_1_61_0\stage\lib
- INCLUDEPATH += F:\local\boost_1_61_0\
linux:使用apt命令安装的boost库文件
- LIBS += -L/usr/lib/aarch64-linux-gnu -lboost_system -lboost_thread -lboost_filesystem
- INCLUDEPATH += /usr/include
websocket初始化及链接的建立同websocketpp中例子,代码如下:
服务端:
- void wpp_sever::InitWpp()
- {
- try
- {
- // Set logging settings
- m_server.set_access_channels(websocketpp::log::alevel::all);
- m_server.clear_access_channels(websocketpp::log::alevel::frame_payload);
-
- // Initialize Asio
- m_server.init_asio();
-
- // Register our message handler
- m_server.set_message_handler(bind(&on_message,&m_server,::_1,::_2));
-
- // Listen on port 9002
- m_server.listen(9002);
-
- // Start the server accept loop
- m_server.start_accept();
-
- // Start the ASIO io_service run loop
- m_server.run();
- }
- catch (websocketpp::exception const & e)
- {
- std::cout << e.what() << std::endl;
- }
- catch (...)
- {
- std::cout << "other exception" << std::endl;
- }
- }
客户端:
- void wpp_client::InitSocekt()
- {
- std::string uri = "ws://127.0.0.1:9002";//访问的地址
- try
- {
- // Set logging to be pretty verbose (everything except message payloads)
- m_c.set_access_channels(websocketpp::log::alevel::all);
- m_c.clear_access_channels(websocketpp::log::alevel::frame_payload);
- // Initialize ASIO
- m_c.init_asio();
- // Register our message handler
- m_c.set_message_handler(bind(&on_message,&m_c,::_1,::_2));
- websocketpp::lib::error_code ec;
- m_con = m_c.get_connection(uri, ec);
- if (ec)
- {
- std::cout << "could not create connection because: " << ec.message() << std::endl;
- }
- // Note that connect here only requests a connection. No network messages are
- // exchanged until the event loop starts running in the next line.
- m_c.connect(m_con);
-
- // Start the ASIO io_service run loop
- // this will cause a single connection to be made to the server. c.run()
- // will exit when this connection is closed.
- m_c.run();
- }
- catch (websocketpp::exception const & e)
- {
- std::cout << e.what() << std::endl;
- }
- }
完整demo代码请自行下载:(包含window下使用的boost库文件和websocket++头文件)
参考文章:
C++ WebSocket 库 - 简书WebSocket 是 HTML5 的一个引入注目的特性,它通常用于 Web 端,为构建实时的 Web 应用提供方便。WebSocket 是一个基于 TCP 的协议,它借助于...https://www.jianshu.com/p/64e36cd3ed1aWebSocket使用(C++环境)(一) --- websocket++库的安装与使用_wangdamingll的博客-CSDN博客_websocket++websocket官方网址:http://websocket.org/websocket++官方网址:https://www.zaphoyd.com/websocketppwebsocket++使用手册:https://www.zaphoyd.com/websocketpp/manual/今天接收到一个任务,说是使用websocket,这还不够,只能用C++语言,这就有点尴尬了。...https://blog.csdn.net/wangdamingll/article/details/53412325
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。