ntex-net 3.15.0

ntexwork utils for ntex framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod connect;
mod io;
mod reactor;
mod stream;

pub use self::reactor::{Handler, Reactor, ReactorApi};
pub use ntex_polling::{Event, PollMode};

#[cfg(not(target_pointer_width = "64"))]
compile_error!("Only 64bit platforms are supported");

/// Tcp stream wrapper for neon `TcpStream`
struct TcpStream(socket2::Socket, stream::StreamOps);

/// Tcp stream wrapper for neon `UnixStream`
struct UnixStream(socket2::Socket, stream::StreamOps);