2023-01-02 00:14:25 +00:00
|
|
|
//! 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};
|
|
|
|
|
2023-01-03 14:43:02 +00:00
|
|
|
use actix_http::{HttpService, Request, Response, StatusCode};
|
2023-01-02 00:14:25 +00:00
|
|
|
use actix_server::Server;
|
|
|
|
|
2023-01-03 14:43:02 +00:00
|
|
|
#[tokio::main(flavor = "current_thread")]
|
2023-01-02 00:14:25 +00:00
|
|
|
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), || {
|
2023-01-03 14:43:02 +00:00
|
|
|
HttpService::build()
|
|
|
|
.finish(|_req: Request| async move {
|
|
|
|
Ok::<_, Infallible>(Response::build(StatusCode::OK).body("Hello!"))
|
|
|
|
})
|
|
|
|
.tcp_auto_h2c()
|
2023-01-02 00:14:25 +00:00
|
|
|
})?
|
|
|
|
.workers(2)
|
|
|
|
.run()
|
|
|
|
.await
|
|
|
|
}
|