mirror of
https://github.com/actix/actix-web.git
synced 2024-11-10 19:01:05 +00:00
08c2cdf641
* http service finalizer for automatic h2c detection * update changelog * add h2c auto test
29 lines
917 B
Rust
29 lines
917 B
Rust
//! An example that supports automatic selection of plaintext h1/h2c connections.
|
|
//!
|
|
//! Notably, both the following commands will work.
|
|
//! ```console
|
|
//! $ curl --http1.1 'http://localhost:8080/'
|
|
//! $ curl --http2-prior-knowledge 'http://localhost:8080/'
|
|
//! ```
|
|
|
|
use std::{convert::Infallible, io};
|
|
|
|
use actix_http::{HttpService, Request, Response, StatusCode};
|
|
use actix_server::Server;
|
|
|
|
#[tokio::main(flavor = "current_thread")]
|
|
async fn main() -> io::Result<()> {
|
|
env_logger::init_from_env(env_logger::Env::new().default_filter_or("info"));
|
|
|
|
Server::build()
|
|
.bind("h2c-detect", ("127.0.0.1", 8080), || {
|
|
HttpService::build()
|
|
.finish(|_req: Request| async move {
|
|
Ok::<_, Infallible>(Response::build(StatusCode::OK).body("Hello!"))
|
|
})
|
|
.tcp_auto_h2c()
|
|
})?
|
|
.workers(2)
|
|
.run()
|
|
.await
|
|
}
|