Ole Christian Eidheim
Ole Christian Eidheim
I do not immediately see a need for this. Also, one can easily implement this oneself using the on_open, on_close/on_error, on_message handlers.
Sorry, I have never used MSVC. To me it sounds like it fails at this line: `find_package(Threads REQUIRED)` in CMakeLists.txt. I guess it could also be that your boost is...
Probably, but I have no experience with this. In general though, it is usually up to a volunteering package maintainer to create and manage such a package.
What system are you on @fatduckling ? A backtrace would be useful as well, and maybe a minimal example that results in this exception.
I could not reproduce this error on an upgraded Ubuntu 16.04.01.
You can store the connection shared_ptr that you receive from the on_open handler, and use this shared_ptr to send messages outside of the handlers.
Yes, this library is asynchronous, so this is expected behaviour. When you call `client.start()` the handlers (the on_message lambda for instance) are run in this thread.
What OS and compiler are you using?
Could you try reproduce the errors on Linux using g++? Just to rule out that it us not a Windows issue. Most server libraries are typically not very well tested...
Thank you, and since it might be a VC release build issue, you could try enable/disable the various flags that are added when you choose release build. That is, to...