使用C++编写TCP服务端程序

要使用Boost.Asio库来开发一个TCP服务端程序,你需要遵循以下步骤。下面的示例代码将演示如何创建一个简单的异步TCP服务器,它能够接收客户端连接,并异步处理请求和响应。

首先,确保你已经安装了Boost库,并在你的项目中包含了asio库。

以下是基本的代码框架:

cpp 复制代码
#include <boost/asio.hpp>
#include <boost/bind.hpp>
#include <boost/system/error_code.hpp>
#include <iostream>
#include <memory>

using boost::asio::ip::tcp;

class Server {
public:
    Server(boost::asio::io_context& io_context, short port)
        : acceptor_(io_context, tcp::endpoint(tcp::v4(), port))
    {
        // 启动监听
        start_accept();
    }

private:
    void start_accept() {
        // 创建新的socket
        std::shared_ptr<tcp::socket> new_socket = std::make_shared<tcp::socket>(acceptor_.get_executor().context());

        // 异步接受连接
        acceptor_.async_accept(*new_socket,
            [this, new_socket](boost::system::error_code ec) {
                if (!ec) {
                    std::cout << "New connection accepted." << std::endl;
                    // 异步读取请求数据
                    boost::asio::async_read(*new_socket, boost::asio::buffer(buffer_),
                        [this, new_socket](boost::system::error_code ec, std::size_t length) {
                            if (!ec) {
                                // 处理请求(这里只是简单地将接收到的数据原样返回)
                                boost::asio::async_write(*new_socket, boost::asio::buffer(buffer_, length),
                                    [new_socket](boost::system::error_code ec, std::size_t /*length*/) {
                                        if (ec) {
                                            std::cerr << "Error: " << ec.message() << std::endl;
                                        } else {
                                            std::cout << "Response sent successfully." << std::endl;
                                        }
                                    });
                            } else {
                                std::cerr << "Read failed: " << ec.message() << std::endl;
                            }
                        });

                    // 继续监听下一个连接
                    start_accept();
                } else {
                    std::cerr << "Accept failed: " << ec.message() << std::endl;
                }
            });
    }

    tcp::acceptor acceptor_;
    char buffer_[1024];
};

int main() {
    try {
        boost::asio::io_context io_context;

        Server s(io_context, 12345);

        io_context.run();
    }
    catch (std::exception& e) {
        std::cerr << e.what() << std::endl;
    }

    return 0;
}

在这个例子中:

  • 我们定义了一个Server类,它包含一个acceptor用于接受新连接。
  • start_accept函数用于启动异步接受过程,当有新的连接到达时,它会创建一个新的socket并绑定到一个lambda函数中,该函数处理读取请求、处理请求以及写入响应。
  • 请求数据被读取到buffer_中,然后原样返回给客户端。
  • 使用io_context.run()启动事件循环,处理所有的I/O操作。
相关推荐
wangjun51593 分钟前
linux,物理机、虚拟机,同时内外网实现方案;物理机与虚拟机互通网络;
linux·服务器·网络
杰克崔7 分钟前
分析sys高问题的方法总结
linux·运维·服务器
Bruce-li__18 分钟前
深入理解Python asyncio:从入门到实战,掌握异步编程精髓
网络·数据库·python
self-discipline63427 分钟前
【计网速通】计算机网络核心知识点与高频考点——数据链路层(二)
网络·网络协议·计算机网络
车载小杜30 分钟前
基于指针的线程池
开发语言·c++
xyliiiiiL2 小时前
一文总结常见项目排查
java·服务器·数据库
叫醒你笛莎2 小时前
IGMP(Internet Group Management Protocol)与组播技术深度解析
网络
网络抓包与爬虫2 小时前
Wireshark——抓包分析
websocket·网络协议·tcp/ip·http·网络安全·https·udp
lulinhao2 小时前
HCIA/HCIP基础知识笔记汇总
网络·笔记
暴走的YH2 小时前
【网络协议】三次握手与四次挥手
网络·网络协议