Seth Hamilton

Results 17 comments of Seth Hamilton

I was definitely calling `reset` and `run` like in the example from the second post. Perhaps that's the issue.

It still stalls, not right away, but eventually. Do you think it has to do with calling your request functions from other threads? Do I need to lock the `io_service`...

@eidheim no, unfortunately. To get around this I created a worker thread for each client connection and call `reset` and `run`. I think the issue is that my program has...

It works very well on MSVC 2015. Especially the newer variants. 2013 is pretty old, and likely wasn't fully compliant.

I don't have the HTTPS code incorporated yet, but to avoid this issue when I get to it, I've abstracted the web server completely to the point where there is...

@aaalgo I have a template function in a handler class I made called `HttpServe`, please forgive my horrible regex. ```c++ template void HttpServe::mapEndpoints(T& server) { /* match: * query/ *...

@eidheim is there an example anywhere of using Simple-Web-Server to upgrade a connection to WS using Simple-WebSocker-Server? That would be slick. Actually a client example would be slick too. I...