Re: [Boost-users] Boost Twitter is Blowing Up!!!

2022-06-20 Thread Child OfGod via Boost-users
I got deactivated from twitter 10 years ago, for no reason. Tried a few times to re-register to no avail. On Tue, Jun 21, 2022 at 9:48 AM 😉 Good Guy 😉 via Boost-users < boost-users@lists.boost.org> wrote: > On 20/06/2022 23:08, Vinnie Falco via Boost-users wrote: > > Greetings fellow users, libra

Re: [Boost-users] [release] Boost 1.76.0 Beta 1 Release Candidate 2

2021-03-13 Thread Child OfGod via Boost-users
I only tried building for vc142 for ARM64, build was said to be successfull, but I can't find asio. I haven't run any checks at all other than that, since i can only run for asio and some other parts for my project. On Sat, Mar 13, 2021 at 7:09 AM Marshall Clow via Boost-users < boost-users@lists.

Re: [Boost-users] boost::asio::read() gets stuck when there's no internet

2021-02-20 Thread Child OfGod via Boost-users
Thanks Niall, I tried adding this to the code: [code] boost::asio::socket_base::keep_alive ka_option(true); socket.lowest_layer().set_option(ka_option); [/code] and now it sometimes can come out of the read with an exception raised, which is good, but this happens only once in a while. I

[Boost-users] boost::asio::read() gets stuck when there's no internet

2021-02-19 Thread Child OfGod via Boost-users
In TgBot library i use under MSVC++, in tgbot/net/BoostHttpOnlySslClient.cpp, a call to boost::asio::read() does not return when internet is disconnected for a few minutes. I would appreciate any help to get this resolved, i.e. for the read function to return if it fails after some timeout has pas