C ++ boost :: asio :: ip :: tcp :: acceptor有时不接受连接器吗?

时间:2020-02-06 13:55:14

标签: c++ sockets network-programming boost-asio

我目前有一个很奇怪的问题。有时我的 :: acceptor(使用async_accept)不接受套接字(没有调用async_accept中指定的accept函数),但是连接器在connect函数上返回true(均为boost :: asio :: 类)。有时候所有的作品都可以,但是有时候我没有接收器插槽。。。我真的不知道为什么了。我在Win10 64bit下使用不同的listen_ports测试了所有内容。
我的服务器结构如下:
io_service:

_io_thread = std::make_unique<std::thread>([this]() {
            while (1)
            {
                try
                {
                    _io_service->run();
                    break;
                }
                catch (const boost::exception& e)
                {
                    spdlog::error("IO_SERVICE_EXCEPTION: ", boost::diagnostic_information(e));
                }
            }
        });

接受者:

void Server::initialize(uint16_t listen_port)
    {
        // at this point the io_thread is running already

        auto endpoint = ip::tcp::endpoint(ip::tcp::v4(), listen_port);

        _acceptor = std::make_unique<boost::asio::ip::tcp::acceptor>(*_io_service, endpoint.protocol());
        _acceptor->set_option(boost::asio::ip::tcp::acceptor::reuse_address(false));
        _acceptor->bind(endpoint);
        _acceptor->listen();

        _listen_port = listen_port;

        __accept();
    }

__ accept():

void Server::__accept()
    {
        // create socket for next connection
        _acceptor_socket = std::make_unique<ip::tcp::socket>(*_io_service);

        _acceptor->async_accept(*_acceptor_socket, [this](const boost::system::error_code& err)
            {
                spdlog::info("Accept new socket..."); // this sometimes doesn't get called :(

                if (err.failed())
                {
                    // acceptor closed
                    if (err == boost::asio::error::operation_aborted)
                    {
                        spdlog::info("network server stopped accepting sockets");
                        return;
                    }

                    // unknown error
                    spdlog::error("network server accepting socket failed {} message {} num {}", err.failed(), err.message(), err.value());

                    // accept next connection
                    __accept();
                    return;
                }

                // accept new socket
                _new_connections_mutex.lock();

                auto con = __create_new_connection();
                con->initialize(++_connection_id_counter, std::move(_acceptor_socket));
                con->set_handler(_input_handler);
                con->goto_phase(_initial_phase);
                spdlog::info("new connection from {} with id {}", con->get_host_name(), con->get_unique_id());

                _new_connections[con->get_unique_id()] = std::move(con);

                _new_connections_mutex.unlock();

                // wait for next connection
                __accept();
            }
        );
    }



我的客户端连接器很简单:

        auto socket = std::make_unique<boost::asio::ip::tcp::socket>(*_io_service);

        spdlog::info("try to connect to {}:{}", endpoint.address().to_string(), endpoint.port());
        try
        {
            socket->connect(endpoint);
        }
        catch (const boost::system::system_error & e)
        {
            spdlog::error("cannot connect to {}:{}", endpoint.address().to_string(), endpoint.port());
            return false;
        }

        // this succeeds everytime...
        [...]

所以……不应该在每次连接器套接字成功连接接收器套接字时也创建它们吗?我希望有人知道这里出了什么问题:/

1 个答案:

答案 0 :(得分:1)

好吧,我找到了答案。...io_service :: run函数无法正常运行。我认为如果不调用io_service :: stop,它将永远阻止。似乎是错误的。因为我在while循环中退出一个:: run调用后中断,然后线程完成,所以在连接器套接字连接时io_service有时不再运行。 更改了io_service :: run-> run_one()并删除了中断。现在将添加一个取消循环变量,因此它不是无限循环...
感谢您的回答!