Richard Hodges

Results 213 comments of Richard Hodges

1. What do you get if you print everything.message() to the console? 2. are you sure you’re not accessing the websocket on 2 threads? Strange errors are often the result...

At the moment I don’t have a lot to go on. Could you post a short complete program that exhibits the problem? At the moment I am suspecting a data...

FYI, from OpenSSL source: ``` static ERR_STRING_DATA ERR_str_reasons[]= { {ERR_R_SYS_LIB ,"system lib"}, ``` Typical use in OpenSSL: ``` if (BIO_read_filename(in, file)

Hi hate to day it but this kind of intermittent problem is normally due to a race condition or inadvertent undefined behaviour being introduced in the code. Is the program...

I would bet that if you moved just the comms code into its own single-threaded program you'd see no problems. Out of interest, can you confirm that the openssl library...

I guess the next step is to isolate the SSL library and test it in isolation. There error you are seeing is originating there. Can you confirm: - Which SSL...

Boost (including beast) should be installed either the supplied b2 tool. The Cmake script is there for maintenance use at the moment. Cmake support for installing boost is in the...

If you’re happy to submit a PR we’d welcome it.

It is on my roadmap.

My feeling at the moment is that `terminal` cancellation is trivial (and might even just work off the bat). It probably won't be too much work to make HTTP operations...