Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What
#1849
Update following examples to async/await version and move them from
examples_disabled
toexamples
folder.How to test
proxy
This is a example for a proxy server. It would proxy every requests from
localhost:3000
tolocalhost:3001
. To test its functionalities, firstcargo run --example proxy
cargo run --example hello
curl localhost:3001
and responseHello World!
single_threaded & state
These two examples are counterparts of each other. Only in
singled_threaded
example canRc
(notSend
type) be used.cargo run --example state
to launch the server.curl localhost:3000
and check if the request counter increases correctly.cargo run --example singled_threaded
to launch the server.curl localhost:3000
and check if the request counter increases correctly.upgrades
This example demos HTTP upgrading. To test it, just follow the steps:
cargo run --example upgrades
to launch the server.