diff --git a/ntex-net/src/lib.rs b/ntex-net/src/lib.rs index ddc272bb..f97cb50c 100644 --- a/ntex-net/src/lib.rs +++ b/ntex-net/src/lib.rs @@ -21,7 +21,7 @@ cfg_if::cfg_if! { mod rt_impl; pub use self::rt_impl::{ from_tcp_stream, from_unix_stream, tcp_connect, tcp_connect_in, unix_connect, - unix_connect_in, + unix_connect_in, active_stream_ops }; } else { pub use self::compat::*; diff --git a/ntex-net/src/rt_polling/driver.rs b/ntex-net/src/rt_polling/driver.rs index 39d4872e..88f95894 100644 --- a/ntex-net/src/rt_polling/driver.rs +++ b/ntex-net/src/rt_polling/driver.rs @@ -85,6 +85,10 @@ impl StreamOps { }) } + pub(crate) fn active_ops() -> usize { + Self::current().0.with(|streams| streams.len()) + } + pub(crate) fn register(&self, io: T, context: IoContext) -> StreamCtl { let fd = io.as_raw_fd(); let stream = self.0.with(move |streams| { diff --git a/ntex-net/src/rt_polling/mod.rs b/ntex-net/src/rt_polling/mod.rs index 08732fa7..c17a30d2 100644 --- a/ntex-net/src/rt_polling/mod.rs +++ b/ntex-net/src/rt_polling/mod.rs @@ -68,6 +68,12 @@ pub fn from_unix_stream(stream: std::os::unix::net::UnixStream) -> Result { )?))) } +#[doc(hidden)] +/// Get number of active Io objects +pub fn active_stream_ops() -> usize { + self::driver::StreamOps::::active_ops() +} + #[cfg(all(target_os = "linux", feature = "neon"))] #[cfg(test)] mod tests { diff --git a/ntex-rt/Cargo.toml b/ntex-rt/Cargo.toml index 36387680..4e09c6da 100644 --- a/ntex-rt/Cargo.toml +++ b/ntex-rt/Cargo.toml @@ -42,4 +42,4 @@ tok-io = { version = "1", package = "tokio", default-features = false, features "net", ], optional = true } -ntex-neon = { version = "0.1.15", optional = true } +ntex-neon = { version = "0.1.16", optional = true }