Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
nghttp2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
nghttp2
Commits
1e3afe06
Commit
1e3afe06
authored
Mar 06, 2015
by
Tatsuhiro Tsujikawa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update README for asio server example
parent
38788d70
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
5 deletions
+6
-5
README.rst
README.rst
+6
-5
No files found.
README.rst
View file @
1e3afe06
...
@@ -1035,7 +1035,7 @@ HTTP/2 server looks like this:
...
@@ -1035,7 +1035,7 @@ HTTP/2 server looks like this:
.. code-block:: cpp
.. code-block:: cpp
#include <nghttp2/asio_http2.h>
#include <nghttp2/asio_http2
_server
.h>
using namespace nghttp2::asio_http2;
using namespace nghttp2::asio_http2;
using namespace nghttp2::asio_http2::server;
using namespace nghttp2::asio_http2::server;
...
@@ -1043,11 +1043,12 @@ HTTP/2 server looks like this:
...
@@ -1043,11 +1043,12 @@ HTTP/2 server looks like this:
int main(int argc, char *argv[]) {
int main(int argc, char *argv[]) {
http2 server;
http2 server;
server.listen("*", 3000, [](const std::shared_ptr<request> &req,
server.handle("/", [](const request &req, const response &res) {
const std::shared_ptr<response> &res) {
res.write_head(200);
res->write_head(200);
res.end("hello, world\n");
res->end("hello, world");
});
});
server.listen_and_serve("*", 3000);
}
}
For more details, see the documentation of libnghttp2_asio.
For more details, see the documentation of libnghttp2_asio.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment