Seth Hamilton

Results 17 comments of Seth Hamilton

Cool, I see it. Thank you.

Lol, sure, I'll do it for the fame and fortune!

@eidheim Can't seem to push my PR. Getting permission denied.

I've made the PR here: https://github.com/eidheim/Simple-Web-Server/pull/214 This is failing CI, but I think it's because it's not set to the C++17 standard for compilation.

@pboettch @eidheim Ok, so, there is a (stupid) flaw with `__has_include`, it checks for the presence of the include, not whether it will compile or not. When not compiling with...

like perhaps something like this: ``` #if defined(__has_include) && __has_include() && (__cplusplus >> 201402L || (defined(_MSC_VER) && _MSC_VER >= 1912)) #include namespace SimpleWeb { using string_view = std::string_view; } #elif...

This is compiling. I've added two tests with the `s-std=c++17` compiler flag with and without `USE_STANDALONE_ASIO` https://github.com/eidheim/Simple-Web-Server/pull/214

Wow. Thank you. That made sense. I made a bunch of threads, detached them and made them all share the same `client`, called `reset` then `run` and it worked. I...

@eidheim Thank you. Interestingly, when I create clients from application threads using a shared `io_service` will cause stalling, where nothing happens until a timeout occurs, I've had to move back...

I had almost exactly your example at first. I even had the sleep to wait for the server to start and set the `server.io_service`. My clients are created elsewhere in...