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-01-08 11:18:56 +06:00
.github/workflows Run tests for all features as possible (#78) 2019-12-19 16:31:32 +09:00
actix-codec Use .advance() intead of .split_to() 2019-12-19 09:50:31 +06:00
actix-connect pin trsut-dns-proto 2019-12-15 13:04:26 +06:00
actix-ioframe refactor service and state manahement 2019-12-29 13:42:42 +06:00
actix-macros add license files to actix-macros 2019-12-14 23:01:55 +06:00
actix-rt Add methods to check LocalWaker registration state 2019-12-20 09:13:11 +06:00
actix-server rename .run to .start() 2019-12-29 10:07:46 +06:00
actix-service map_config() and unit_config() accepts IntoServiceFactory type 2019-12-22 16:30:49 +04:00
actix-testing prepare actix-testing release 2019-12-11 14:49:26 +06:00
actix-threadpool use parking_lot 0.10 2019-12-12 06:57:40 +06:00
actix-tls fmt 2019-12-25 15:10:13 +04:00
actix-utils Add Clone impl for condition::Waiter 2020-01-08 11:18:56 +06:00
examples Use associated type for NewService config 2019-05-12 06:03:50 -07:00
router Add ResourceDef::resource_path_named() path generation method 2019-12-31 18:02:43 +06:00
string fix new() method and make from_static and from_bytes_unchecked methods const 2019-12-22 16:24:28 +04:00
.appveyor.yml prep release 2018-10-08 21:46:57 -07:00
.gitignore Migrate actix-net to std::future (#64) 2019-11-14 18:38:24 +06:00
.travis.yml Migrate actix-net to std::future (#64) 2019-11-14 18:38:24 +06:00
Cargo.toml update tokio verion and prep alpha3 release 2019-12-07 09:57:43 +06: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 update docs 2019-12-10 21:34:51 +06:00
rustfmt.toml update tests 2018-11-29 17:17:02 -10:00

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

Actix net - framework for composable network services

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.