Boost logo

Boost Users :

Subject: Re: [Boost-users] Why boost::asio doesn't work???
From: Igor R (boost.lists_at_[hidden])
Date: 2009-07-27 06:31:17


The message title a bit missleading: it's not asio that doesn't work,
but your application :).
Please see the comments below.

> msgSrv::msgSrv(int listenPort) {
>    // TODO Auto-generated constructor stub
>    this->listenPort = listenPort;
>    try {
>        asioIoService = new asio::io_service();
>        asioSocket = new asio::ip::udp::socket(*asioIoService,
>                asio::ip::udp::endpoint(asio::ip::udp::v4(),
> listenPort)); //new asio::ip::udp::socket_(*asioIoService,
> udp::endpoint(udp::v4(), listenPort));
>    } catch (std::exception &e) {
>        std::cerr << "Error initializing ioservice or socket:" <<
> e.what();
>    }
>    asioIoService->run();

You run() io_service that doesn't have any work, so run() exits
immediately. Then you enqueue some async.request, and your applciation
exits, freeing "msgSrv" object and deleting the io_service and the
socket. The request you enqueued is still alive, but an attempt to
process it causes crash, because you already deleted all the asio
stuff...
Note that if io_service had some work (eg, pending async_XXX requests,
or asio::work object) before you called run(), it would block until
all the work is processed.
Please see asio tutorial and examples for more information.


Boost-users list run by williamkempf at hotmail.com, kalb at libertysoft.com, bjorn.karlsson at readsoft.com, gregod at cs.rpi.edu, wekempf at cox.net