Ole Christian Eidheim
Ole Christian Eidheim
Maybe we can solve this by adding a comment on the first `send` example instead?
Have you tried the v1.3.1 release? I'm curious if I have done some changes since the v1.3.1 release that have broken MSVC compilation somehow.
Also, does the `ws_examples.cpp` work? It might be that you are using a different port than 8080? Some ports might need administrator rights to bind to I guess.
Not sure what to do here as I do not use Windows. But it seems to be a boost on Windows issue if I'm not mistaken. Could it be the...
It has been some time since I did this, but I think I managed to connect to my wss with a self signed certificate on Chrome, but I first had...
I can't reproduce this in either MacOS or Linux. I'm guessing this is a Windows specific OpenSSL issue, and I'm of no help there sorry.
Are you sure this is needed? The regular expressions are just a general way to set a specific path and/or retrieve some parameters, but I might be wrong and there...
Do not worry about performance issues on your own connection-path map, it's pretty fast, especially if you do lookups using unordered_map. I still think you can add two different paths...
You only need to check the connection path at onconnect, and do a close there if its not a valid path I guess.
I would try avoid adding new endpoints, even if you add a mutex and do it safely, it locks down the asio pool. Edit: changed asio queue to pool, also...