mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07: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>,
|
||||
}
|
||||
|
||||
type Operations = RefCell<Slab<(Box<SockAddr>, Sender<io::Result<()>>)>>;
|
||||
|
||||
struct ConnectOpsInner {
|
||||
api: DriverApi,
|
||||
ops: RefCell<Slab<(Box<SockAddr>, Sender<io::Result<()>>)>>,
|
||||
ops: Operations,
|
||||
}
|
||||
|
||||
impl ConnectOps {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue