youngjoo.park

Results 10 comments of youngjoo.park

@blessedbythestorm I try this with catch_all trie container use crow "CROW_CATCHALL_ROUTE" and i put dynamic path with like this code block ``` registDynamicPathCallback("/depth1/{value_key_1}/depth2/{value_key_2}", [](const char* param) { ``` but it...

I was got same issue so i tried use nxadm/tail but it also permission issue raised.. i try found another metric integration solution.

@gittiver my explanation was wrong 1. I tried to implement a dynamic variable path such as path/value1/path2/value2 that was not predefined through catch_all. Even if this was possible, until SSL...

No i put the cert by self signed so it works good regular paths. like `loaclhost:10000/path1` but does not works in catch_all routes with ssl

That's right, all general paths are working well. When implementing catch_all to redirect to the correct path Shouldn't we just change the code/body values ​​of response obj and then call...

compile time checkable variable handler is very useful but I am not currently implementing the webserver directly, but I was trying to implement a more dynamic variable path. catch_all was...

i try adding catchall handler like ``` auto catchall = [](const crow::request& req, crow::response& res) { if (req.method == crow::HTTPMethod::GET) { std::ostringstream os; os

i found key points this bugs.. when use ssl cert. self->adaptor_.close(); in do_read() before write ends

in this codes ``` void handle_url() { routing_handle_result_ = handler_->handle_initial(req_, res); // if no route is found for the request method, return the response without parsing or processing anything further....

Because the actual cause of the bug itself is After reading ssl + request This is because the socket is closed because it is not handled statically. Normally, if you...