oioitff

Results 1 issues of oioitff

测试代码如下: ``` int main() { hv::HttpService router; router.GET("/", [](const HttpRequestPtr& req, const HttpResponseWriterPtr& writer) { writer->Begin(); writer->WriteStatus(HTTP_STATUS_OK); writer->WriteHeader("Content-Type", "text/html"); writer->WriteBody("hello world"); writer->End(); }); hssl_ctx_init_param_t param; memset(&param, 0, sizeof(param)); param.crt_file =...