Emile Cormier
Emile Cormier
> Looks like my wamp::Blob issue is not with cppwamp but crossbar.io. I just updated my windows version of crossbar.io to 0.15.0 and now Blobs are encoded and decoded correctly...
Asked here about the rationale for PING/PONG messages over the `SO_KEEPALIVE` socket option: https://github.com/wamp-proto/wamp-proto/issues/274#issuecomment-1155745450
There. Fixed! :-) But I'd rather complete and close this issue, than fix spelling errors. I've been really busy at work, but I hope to able to spend more time...
I'm now preferring Boost.Beast over Websocket++, the former providing HTTP support that would eventually allow me to implement a REST bridge similar to that of Crossbar's.
Client requirements: - `HELLO.Options.authmethods|list` includes `"wampcra"` - `HELLO.Options.authid|string` is the authentication ID (e.g. username) - Receive `CHALLENGE` messages - Compute the HMAC-SHA256 using the shared secret over the challenge. -...
With the existing authentication API, nothing prevents CppWAMP users from computing the cryptographic signatures themselves using other crypto libraries.
Like I said for your other comment: Sorry, I haven't yet put any thought in how I'd implement this. It's not an urgent feature for my project because Crossbar is...
Session state change callbacks (#78) are now implemented in 637589de4c8d36eab0120c3ad8ec458455e60e26. This should allow the user to implement their own reconnection logic. I'm not sure yet what would be a sensible...
I'm sure everyone here already knows this, but I'll mention it for those who don't: `constexpr if` can be emulated in C++11 by tagged dispatching using `std::true_type` and `std::false_type`: Instead...
According to this [2020 survey](https://blog.jetbrains.com/clion/2020/06/dev-eco-cpp-2020/), 46% responded that they regularly use C++11, so it's far from being dead. I can understand wanting to use the latest C++ features for writing...