Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixup invalid XML entities in document #2275

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions api/zhttp_request.api
Original file line number Diff line number Diff line change
Expand Up @@ -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.

<constructor>
Expand Down Expand Up @@ -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", &amp;name, &amp;id))

<argument name = "method" type = "string" />
<argument name = "path" type = "string" variadic = "1" />
Expand Down
2 changes: 1 addition & 1 deletion api/zhttp_response.api
Original file line number Diff line number Diff line change
Expand Up @@ -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 &amp; recv calls.
Headers and Content is being destroyed after every send call.

<constructor>
Expand Down
2 changes: 1 addition & 1 deletion api/zhttp_server.api
Original file line number Diff line number Diff line change
Expand Up @@ -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 &lt;&lt; 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.
Expand Down
4 changes: 2 additions & 2 deletions api/zosc.api
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@

Decoding a message:

int rc = zosc_retr(oscmsg, "iihfdscF", &intx, &inty, &intz, &floatz,
&doublez, &strings, &charq, &someBool);
int rc = zosc_retr(oscmsg, "iihfdscF", &amp;intx, &amp;inty, &amp;intz, &amp;floatz,
&amp;doublez, &amp;strings, &amp;charq, &amp;someBool);

See the class's test method for more examples how to use the class.

Expand Down
Loading