Domanda

At times I get the System Error 995 when using the async_resolve method from an tcp::resolver. The code below shows the relevant code lines.

#include <boost/bind.hpp>
#include <boost/asio.hpp>

#include <iostream>

class connection
{
public:
    connection(boost::asio::io_service& io_service)
        : m_resolver(io_service), m_socket(io_service)
        {
        }

    void async_connect(
            std::string const& host,
            std::string const& service,
            boost::asio::ip::tcp::socket::protocol_type tcp = boost::asio::ip::tcp::v4()
            )
        {
            m_resolver.async_resolve(
                    boost::asio::ip::tcp::resolver::query(tcp, host, service),
                    boost::bind(
                        &connection::resolve_handler, 
                        this, 
                        boost::asio::placeholders::error,
                        boost::asio::placeholders::iterator
                        )
                    );
        }

protected:
    virtual void on_connected(boost::system::error_code const& connect_error)
    {
        if (!connect_error)
        {
            std::cout << "Connection established. Endpoint: " << m_socket.remote_endpoint()
                      << std::endl;
        }
        else
            std::cout << "error: " << connect_error << std::endl;
    }

private:
    void connect_handler(boost::system::error_code const& connect_error)
    {
        on_connected(connect_error);
    }

    void resolve_handler(
            boost::system::error_code const& resolve_error,
            boost::asio::ip::tcp::resolver::iterator endpoint_iterator
            )
        {
            if (!resolve_error)
            {
                m_socket.async_connect(
                        *endpoint_iterator,
                        boost::bind(
                            &connection::connect_handler, 
                            this,
                            boost::asio::placeholders::error
                            )
                        );
            }
        }

private:
    boost::asio::ip::tcp::socket m_socket;
    boost::asio::ip::tcp::resolver m_resolver;
};

int main()
{
    boost::asio::io_service io_service;

    connection foo(io_service);
    foo.async_connect("www.google.de", "http");

    io_service.run();
    return 0;
}

995 (0x3E3) - ERROR_OPERATION_ABORTED means:

The I/O operation has been aborted because of either a thread exit or an application request.

But I have no idea why. I think something goes out of scope but I don't know what exactly. Hope you can help me. Thanks in advance!

È stato utile?

Soluzione

Sometimes we're blind to the most obvious. This is how the main-function should look like:

int main()
{
    boost::asio::io_service io_service;

    connection conn(io_service);                    // Perhaps we should actually declare the object if
    conn.async_connect("www.google.de", "http");    // we want to use it beyond this line ...

    io_service.run();
    return 0;
}
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top