1
0
mirror of https://github.com/fafhrd91/actix-net synced 2024-11-24 00:01:11 +01:00
framework for composable networking services
Go to file
2020-03-08 14:38:07 +09:00
.github/workflows Disable windows-mingw builder temporarily 2020-03-06 13:48:55 +09:00
actix-codec Replace calls to Pin::new_unchecked with pin_project. 2020-03-04 12:08:52 -05:00
actix-connect Bump up to 2.0.0-alpha.2 2020-03-08 14:37:33 +09:00
actix-ioframe Update actix-http dependency 2020-03-08 14:38:07 +09:00
actix-macros Unpin quote version 2020-03-06 13:45:21 +09:00
actix-rt Replace calls to Pin::new_unchecked with pin_project. 2020-03-04 12:08:52 -05:00
actix-server actix-server: Bump up to 1.0.2 2020-02-26 19:48:52 +09:00
actix-service Benchmarks for actix-service: focused around UnsafeCell usage (#98) 2020-02-26 16:45:23 +09:00
actix-testing Suppress/fix clippy warnings 2020-01-29 12:05:55 +09:00
actix-threadpool use parking_lot 0.10 2019-12-12 06:57:40 +06:00
actix-tls Bump up to 2.0.0-alpha.1 2020-03-03 19:47:40 +09:00
actix-tracing prep release 2020-01-15 13:35:07 -08:00
actix-utils Replace calls to Pin::new_unchecked with pin_project. 2020-03-04 12:08:52 -05:00
examples Use associated type for NewService config 2019-05-12 06:03:50 -07:00
router Use markdown format 2020-01-31 00:01:24 +09:00
string Suppress/fix clippy warnings 2020-01-29 12:05:55 +09:00
.gitignore Migrate actix-net to std::future (#64) 2019-11-14 18:38:24 +06:00
Cargo.toml prep release 2020-01-15 13:35:07 -08:00
CODE_OF_CONDUCT.md initial import 2018-08-19 10:47:04 -07:00
LICENSE-APACHE initial import 2018-08-19 10:47:04 -07:00
LICENSE-MIT initial import 2018-08-19 10:47:04 -07:00
README.md Add badges on README 2020-01-31 00:01:47 +09:00
rustfmt.toml update tests 2018-11-29 17:17:02 -10:00

Actix net codecov Join the chat at https://gitter.im/actix/actix

Actix net - framework for composable network services

Build statuses

Platform Build Status
Linux build status
macOS build status
Windows build status
Windows (MinGW) build status

Documentation & community resources

Example

fn main() -> io::Result<()> {
    // load ssl keys
    let mut builder = SslAcceptor::mozilla_intermediate(SslMethod::tls()).unwrap();
    builder.set_private_key_file("./examples/key.pem", SslFiletype::PEM).unwrap();
    builder.set_certificate_chain_file("./examples/cert.pem").unwrap();
    let acceptor = builder.build();

    let num = Arc::new(AtomicUsize::new(0));

    // bind socket address and start workers. By default server uses number of
    // available logical cpu as threads count. actix net start separate
    // instances of service pipeline in each worker.
    Server::build()
        .bind(
            // configure service pipeline
            "basic", "0.0.0.0:8443",
            move || {
                let num = num.clone();
                let acceptor = acceptor.clone();

                // construct transformation pipeline
                pipeline(
                    // service for converting incoming TcpStream to a SslStream<TcpStream>
                    fn_service(move |stream: actix_rt::net::TcpStream| async move {
                        SslAcceptorExt::accept_async(&acceptor, stream.into_parts().0).await
                            .map_err(|e| println!("Openssl error: {}", e))
                    }))
                // .and_then() combinator chains result of previos service call to argument
                /// for next service calll. in this case, on success we chain
                /// ssl stream to the `logger` service.
                .and_then(fn_service(logger))
                // Next service counts number of connections
                .and_then(move |_| {
                    let num = num.fetch_add(1, Ordering::Relaxed);
                    println!("got ssl connection {:?}", num);
                    future::ok(())
                })
            },
        )?
        .run()
}

License

This project is licensed under either of

at your option.

Code of Conduct

Contribution to the actix-net crate is organized under the terms of the Contributor Covenant, the maintainer of actix-net, @fafhrd91, promises to intervene to uphold that code of conduct.