mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
Add check for required io-uring opcodes
This commit is contained in:
parent
11734e8f1b
commit
1f3406d8bc
4 changed files with 19 additions and 1 deletions
|
@ -1,5 +1,9 @@
|
|||
# Changes
|
||||
|
||||
## [2.5.5] - 2025-03-xx
|
||||
|
||||
* Add check for required io-uring opcodes
|
||||
|
||||
## [2.5.4] - 2025-03-15
|
||||
|
||||
* Close FD in various case for poll driver
|
||||
|
|
|
@ -40,7 +40,7 @@ ntex-util = "2.5"
|
|||
|
||||
ntex-tokio = { version = "0.5.3", optional = true }
|
||||
ntex-compio = { version = "0.2.4", optional = true }
|
||||
ntex-neon = { version = "0.1.4", optional = true }
|
||||
ntex-neon = { version = "0.1.5", optional = true }
|
||||
|
||||
bitflags = { workspace = true }
|
||||
cfg-if = { workspace = true }
|
||||
|
|
|
@ -32,6 +32,10 @@ impl ConnectOps {
|
|||
Runtime::value(|rt| {
|
||||
let mut inner = None;
|
||||
rt.driver().register(|api| {
|
||||
if !api.is_supported(opcode::Connect::CODE) {
|
||||
panic!("opcode::Connect is required for io-uring support");
|
||||
}
|
||||
|
||||
let ops = Rc::new(ConnectOpsInner {
|
||||
api,
|
||||
ops: RefCell::new(Slab::new()),
|
||||
|
|
|
@ -61,6 +61,16 @@ impl<T: os::fd::AsRawFd + 'static> StreamOps<T> {
|
|||
Runtime::value(|rt| {
|
||||
let mut inner = None;
|
||||
rt.driver().register(|api| {
|
||||
if !api.is_supported(opcode::Recv::CODE) {
|
||||
panic!("opcode::Recv is required for io-uring support");
|
||||
}
|
||||
if !api.is_supported(opcode::Send::CODE) {
|
||||
panic!("opcode::Send is required for io-uring support");
|
||||
}
|
||||
if !api.is_supported(opcode::Close::CODE) {
|
||||
panic!("opcode::Close is required for io-uring support");
|
||||
}
|
||||
|
||||
let mut ops = Slab::new();
|
||||
ops.insert(Operation::Nop);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue