1
0
mirror of https://github.com/fafhrd91/actix-net synced 2025-01-31 12:42:09 +01:00

34 lines
694 B
Rust
Raw Normal View History

2018-12-09 21:51:35 -08:00
//! General purpose tcp server
2018-09-11 08:43:23 -07:00
mod accept;
2018-12-09 20:30:04 -08:00
mod builder;
mod config;
2018-12-09 22:14:29 -08:00
mod counter;
2018-12-09 21:51:35 -08:00
mod server;
2018-09-11 08:43:23 -07:00
mod services;
2018-12-10 21:06:54 -08:00
mod signals;
2018-12-09 22:14:29 -08:00
pub mod ssl;
2018-09-11 08:43:23 -07:00
mod worker;
2018-12-09 20:30:04 -08:00
pub use self::builder::ServerBuilder;
pub use self::config::{ServiceConfig, ServiceRuntime};
2018-12-09 21:51:35 -08:00
pub use self::server::Server;
2018-09-26 20:40:45 -07:00
pub use self::services::{ServerMessage, ServiceFactory, StreamServiceFactory};
2018-09-11 08:43:23 -07:00
/// Socket id token
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
2018-09-11 08:43:23 -07:00
pub(crate) struct Token(usize);
impl Token {
2018-11-14 14:20:33 -08:00
pub(crate) fn next(&mut self) -> Token {
let token = Token(self.0 + 1);
self.0 += 1;
token
}
}
2018-12-09 22:19:26 -08:00
/// Start server building process
pub fn build() -> ServerBuilder {
ServerBuilder::default()
}