mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 13:27:39 +03:00
wip
This commit is contained in:
parent
7da5a56e96
commit
ccb72a7f64
1 changed files with 3 additions and 1 deletions
|
@ -20,9 +20,11 @@ struct ConnectOpsHandler {
|
||||||
inner: Rc<ConnectOpsInner>,
|
inner: Rc<ConnectOpsInner>,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type Operations = RefCell<Slab<(Box<SockAddr>, Sender<io::Result<()>>)>>;
|
||||||
|
|
||||||
struct ConnectOpsInner {
|
struct ConnectOpsInner {
|
||||||
api: DriverApi,
|
api: DriverApi,
|
||||||
ops: RefCell<Slab<(Box<SockAddr>, Sender<io::Result<()>>)>>,
|
ops: Operations,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl ConnectOps {
|
impl ConnectOps {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue