From ddd683a74772a6c98bb885ff866c2af7e23a8757 Mon Sep 17 00:00:00 2001 From: Flier Lu Date: Sat, 9 Dec 2023 09:44:19 +0800 Subject: [PATCH] fixup invalid XML entities in document --- api/zhttp_request.api | 4 ++-- api/zhttp_response.api | 2 +- api/zhttp_server.api | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/api/zhttp_request.api b/api/zhttp_request.api index a70c7eb84..7aa1b22b5 100644 --- a/api/zhttp_request.api +++ b/api/zhttp_request.api @@ -9,7 +9,7 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/. --> Http request that can be received from zhttp_server or sent to zhttp_client. - Class can be reused between send & recv calls. + Class can be reused between send & recv calls. Headers and Content is being destroyed after every send call. @@ -125,7 +125,7 @@ To use the percent symbol, just double it, e.g "%%something". Example: - if (zhttp_request_match (request, "POST", "/send/%s/%s", &name, &id)) + if (zhttp_request_match (request, "POST", "/send/%s/%s", &name, &id)) diff --git a/api/zhttp_response.api b/api/zhttp_response.api index 3556b6df4..c92398b70 100644 --- a/api/zhttp_response.api +++ b/api/zhttp_response.api @@ -9,7 +9,7 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/. --> Http response that can be received from zhttp_client or sent to zhttp_server. - Class can be reused between send & recv calls. + Class can be reused between send & recv calls. Headers and Content is being destroyed after every send call. diff --git a/api/zhttp_server.api b/api/zhttp_server.api index edbc7636f..eaaf54c19 100644 --- a/api/zhttp_server.api +++ b/api/zhttp_server.api @@ -19,7 +19,7 @@ You can connect as many dealers as you want. The Server is using simple dealer socket to route the requests. - NOTE: when using libmicrohttpd << 0.9.34 the application might experience + NOTE: when using libmicrohttpd << 0.9.34 the application might experience high CPU usage due to the lack of MHD_suspend_connection and MHD_resume_connection APIs. It is recommended to use this class only with libmicrohttpd at least 0.9.34 in production.