eao197

Results 170 comments of eao197

@lpc921 I think it's necessary to do something like that: ```cpp auto router = std::make_unique(); ... // Setup handlers for the router. restinio::run(restinio::on_this_thread() .address("localhost") .request_handler(std::move(router))); ```

Hi! Thanks for reporting this! I didn't know about http-parser maintenance problems. It's a pity. However, it opens at least two possibilities: one is the switching to an alternative (like...

Sometime in the future. And not in the next 2 or 3 months.

@giorgiozoppi There is always a couple of hours per week to ask questions related to our open-source projects.

@giorgiozoppi I like to hear this. However, I see the current situation this way: * if there will be some bug in RESTinio-0.6 we'll have time and resources to fix...

@Majestro000 I hope so, but hardly this year. Anyway, the project is not dead, and we're still here. We react to open issues. And if someone misses some functionality, then...

Hi! I think "the best way" depends on your case. If you have to return just static HTML content then `sendfile` would be a better choice. But if you have...

Thanks for the interesting link. I think there are several levels where security can and should be provided: * the first and the lowest level is the correct and reasonable...

@mouse07410 Docs: https://stiffstream.com/en/docs/restinio/0.6/tls.html Example 1: https://github.com/Stiffstream/restinio/blob/v.0.6.10/dev/sample/hello_world_https/main.cpp Example 2: https://github.com/Stiffstream/restinio/blob/v.0.6.10/dev/sample/tls_inspector/main.cpp