需要在局域网网络上发送std::string

C++ Need to send std::string over a LAN network

本文关键字:std string 局域网 网络      更新时间:2023-10-16

我需要能够通过局域网网络发送std::字符串。就我而言,我有一台mac和一台PC,我希望它们能够进行交流。我已经在网上看了一下,但在解决我的情况方面没有多少幸运。我可以通过c++建立一个网络,让这些计算机可以共享文本,你知道吗?

boost asio库为通过套接字进行网络通信提供了一个健壮的框架。使用c++ 11的例子可以在这里找到:http://www.boost.org/doc/libs/1_58_0/doc/html/boost_asio/examples/cpp11_examples.html

您可能对聊天客户端/服务器示例特别感兴趣。