gpt4 book ai didi

boost asio : how to keep a client connection alive?

转载 作者:行者123 更新时间:2023-12-04 23:31:37 25 4
gpt4 key购买 nike

我尝试创建一个在服务器上保持连接事件的客户端。

但是,当我收到一次数据时,连接已关闭。我不明白为什么。

我想我应该做一个循环,但我们告诉我这不是一个好主意。

class client
{
public:
client(boost::asio::io_service& io_service,
const std::string& host, const std::string& service)
: connection_(io_service)
{
// Resolve the host name into an IP address.
boost::asio::ip::tcp::resolver resolver(io_service);
boost::asio::ip::tcp::resolver::query query(host, service);
boost::asio::ip::tcp::resolver::iterator endpoint_iterator =
resolver.resolve(query);
boost::asio::ip::tcp::endpoint endpoint = *endpoint_iterator;

// Start an asynchronous connect operation.
connection_.socket().async_connect(endpoint,
boost::bind(&client::handle_connect, this,
boost::asio::placeholders::error, ++endpoint_iterator));
}

/// Handle completion of a connect operation.
void handle_connect(const boost::system::error_code& e,
boost::asio::ip::tcp::resolver::iterator endpoint_iterator)
{
if (!e)
{
// Successfully established connection. Start operation to read the list
// of stocks. The connection::async_read() function will automatically
// decode the data that is read from the underlying socket.
connection_.async_read(stocks_,
boost::bind(&client::handle_read, this,
boost::asio::placeholders::error));
}
else
{
std::cerr << e.message() << std::endl;
}
}

/// Handle completion of a read operation.
void handle_read(const boost::system::error_code& e)
{
if (!e)
{
// Print out the data that was received.
for (std::size_t i = 0; i < stocks_.size(); ++i)
{
std::cout << "Paquet numero " << i << "\n";
std::cout << " age: " << stocks_[i].age << "\n";
std::cout << " name: " << stocks_[i].nom << "\n";
}

// Maybe Should i put something here ?
}
else
{
// An error occurred.
std::cerr << "Error : " << e.message() << std::endl;
connection_.socket().close();
}

// or maybe here ?

}

private:
/// The connection to the server.
connection connection_;
std::vector<stock> stocks_;
};

主要看起来像这样:
int main(int argc, char* argv[])
{
try
{
// Check command line arguments.
if (argc != 3)
{
std::cerr << "Usage: client <host> <port>" << std::endl;
return 1;
}

boost::asio::io_service io_service;

client client(io_service, argv[1], argv[2]);
io_service.run();
}
catch (std::exception& e)
{
std::cerr << e.what() << std::endl;
}

return 0;
}

最佳答案

您的 asio io_service 没有工作要做。在 handle_read 中,您可以在其中发表评论“也许我应该在这里放一些东西”,您可以安排下一个异步读取操作:

connection_.async_read(stocks_,
boost::bind(&client::handle_read, this,
boost::asio::placeholders::error));
通常,如果您进行异步编程,一旦调用了异步处理程序,您将调用下一个异步操作,就像您在异步连接处理程序中所做的那样。

关于 boost asio : how to keep a client connection alive?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4298167/

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