mirror of
https://github.com/fafhrd91/actix-net
synced 2024-11-27 21:22:57 +01:00
755b231e00
Co-authored-by: Rob Ede <robjtede@icloud.com>
37 lines
784 B
Rust
37 lines
784 B
Rust
//! General purpose TCP server.
|
|
|
|
#![deny(rust_2018_idioms, nonstandard_style)]
|
|
#![warn(future_incompatible)]
|
|
#![doc(html_logo_url = "https://actix.rs/img/logo.png")]
|
|
#![doc(html_favicon_url = "https://actix.rs/favicon.ico")]
|
|
|
|
mod accept;
|
|
mod availability;
|
|
mod builder;
|
|
mod handle;
|
|
mod join_all;
|
|
mod server;
|
|
mod service;
|
|
mod signals;
|
|
mod socket;
|
|
mod test_server;
|
|
mod waker_queue;
|
|
mod worker;
|
|
|
|
#[doc(hidden)]
|
|
pub use self::socket::FromStream;
|
|
pub use self::{
|
|
builder::{MpTcp, ServerBuilder},
|
|
handle::ServerHandle,
|
|
server::Server,
|
|
service::ServerServiceFactory,
|
|
test_server::TestServer,
|
|
};
|
|
|
|
/// Start server building process
|
|
#[doc(hidden)]
|
|
#[deprecated(since = "2.0.0", note = "Use `Server::build()`.")]
|
|
pub fn new() -> ServerBuilder {
|
|
ServerBuilder::default()
|
|
}
|