-
-
Notifications
You must be signed in to change notification settings - Fork 497
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: http method updates (rough draft for now)
- Loading branch information
Showing
2 changed files
with
8 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
= nng_http_conn_read_req(3http) | ||
// | ||
// Copyright 2018 Staysail Systems, Inc. <[email protected]> | ||
// Copyright 2025 Staysail Systems, Inc. <[email protected]> | ||
// Copyright 2018 Capitar IT Group BV <[email protected]> | ||
// | ||
// This document is supplied under the terms of the MIT License, a | ||
|
@@ -20,15 +20,15 @@ nng_http_conn_read_req - read HTTP request | |
#include <nng/nng.h> | ||
#include <nng/supplemental/http/http.h> | ||
void nng_http_conn_read_req(nng_http_conn *conn, nng_http_req *req, | ||
nng_aio *aio); | ||
void nng_http_conn_read_req(nng_http_conn *conn, nng_aio *aio); | ||
---- | ||
|
||
== DESCRIPTION | ||
|
||
The `nng_http_conn_read_req()` function starts an asynchronous read from the | ||
HTTP connection _conn_, reading an HTTP request into the _req_, including all | ||
of the related headers. | ||
HTTP connection _conn_, reading an HTTP request into the request object | ||
associated with _conn_, including all of the related headers. | ||
(The request object can be obtained via `nng_http_conn_req()`. | ||
|
||
NOTE: Any HTTP entity/body data associated with the request is *not* read | ||
automatically. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
= nng_http_conn_write_res(3http) | ||
// | ||
// Copyright 2018 Staysail Systems, Inc. <[email protected]> | ||
// Copyright 2025 Staysail Systems, Inc. <[email protected]> | ||
// Copyright 2018 Capitar IT Group BV <[email protected]> | ||
// | ||
// This document is supplied under the terms of the MIT License, a | ||
|
@@ -20,14 +20,13 @@ nng_http_conn_write_res - write HTTP response | |
#include <nng/nng.h> | ||
#include <nng/supplemental/http/http.h> | ||
void nng_http_conn_write_res(nng_http_conn *conn, nng_http_res *res, | ||
nng_aio *aio); | ||
void nng_http_conn_write_res(nng_http_conn *conn, nng_aio *aio); | ||
---- | ||
|
||
== DESCRIPTION | ||
|
||
The `nng_http_conn_write_res()` function starts an asynchronous write of | ||
the HTTP response _res_ to the connection _conn_. | ||
the HTTP response associated with the connection _conn_. | ||
The entire response is sent, | ||
including headers, and if present, the response body data. | ||
(The response body can be set with | ||
|