Sung Po-Han
Sung Po-Han
Did you remove the lock file before running new version? I recall I had to remove it to get it working though.
Hi @memsharded The library is not owned by us, and it is FSEvents of macOS that is disabled when Darwin version is not greater than 9, maybe due to it's...
> > BTW, I still would like to know how those version settings work together, can you help me on it? > > I think it goes like this: >...
Hi @czoido It's great to see that this behavior will be fixed in the future. Thanks! My last question on `os.sdk_version` where setting it caused CMake failing to compile due...
Update: The latest [RFC 9110 section 10.1.1](https://datatracker.ietf.org/doc/html/rfc9110#section-10.1.1) says `A server that responds with a final status code before reading the entire request content SHOULD indicate whether it intends to close...
Sure! I'll take some time to see how I can add some proper tests.
@yhirose I have difficulty where `httplib::Client` doesn't implement the `Expect: 100-continue` behavior, so I can't use it to test the server behavior effectively. It simply sends all the data and...
@paulharris You need to setup 100-continue handler to reject uploads. For example, ```c++ svr.set_expect_100_continue_handler([](Request const& req, Response& res) { res.status = 400; res.set_content("{\"error\": \"You Shall Not Upload!!!!\"}", "application/json; charset=utf-8"); return...
@yhirose Sorry for late response. I've pushed my commit for review, please check.
I noticed that there is `verify_result_` for storing OpenSSL result and is retrieved by `get_openssl_verify_result()`, but I have no idea how to set it. Please advise.