Ole Christian Eidheim
Ole Christian Eidheim
@z0u Thank you! I'll have a look at it Tomorrow after lunch. I never imagined this to be a use case for HTTP/1.1, but it is definitely needed when using...
I'm leaning towards keeping multimap since it is the general approach, but I'm open for discussion on this. Also, parsing cookies are a bit similar to the `ContentDisposition::parse` function found...
Thank you for the suggestion. One problem I can see is that the response header type, if it should support multiple `set-cookie` header fields, would be different from the request...
Sorry for the late reply, but I'm not entirely sure what happens in Boost.Asio on SIGTERM. I would guess that the io_service is attempted to stop gracefully so that current...
Hopefully, someone with MSVC background can answer this.
If there is no message, `on_error` could be called either here: https://github.com/eidheim/Simple-Web-Server/blob/master/server_http.hpp#L342 or here: https://github.com/eidheim/Simple-Web-Server/blob/master/server_http.hpp#L476.
What error code type are you getting? Might be that not all error code types have messages, although that is a bit strange. It might also be an boost asio...
Thank you. I'm currently looking into meson, and will have to read up on especially the subproject command. Supporting meson project would be great, but we should maybe not have...
I'd prefer to stick to cmake for now, but we can keep this PR open until a time if or when it would be appropriate to move to meson build...
I've implemented Meson support for our IDE at https://github.com/cppit/jucipp/pull/298, and got some experience with the build system. While I like Meson, it is not entirely ready for server use yet....