$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [Boost-users] boost asio: Probelm with closing a blocking ip::udp::socket receive
From: Igor R (boost.lists_at_[hidden])
Date: 2009-03-12 10:21:55
> After shutdown I ALWAYS get system:107 error code - which means "Transport
> endpoint is not connected".
>
> Does anybody  have any idea why I'm receiving such an error?
> Needless to say, the receive is working great - and I get the packets from
> the port I'm listening to.
I don't know why you get this error, but socket object is not
threadsafe, so you shouldn't access it from different threads without
synchronization.