Skip to content

Commit 47cf59c

Browse files
committed
Deregister connection before dropping it in TCP example
1 parent 05009e4 commit 47cf59c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

examples/tcp_server.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,9 @@ fn main() -> io::Result<()> {
8282
false
8383
};
8484
if done {
85-
connections.remove(&token);
85+
if let Some(mut connection) = connections.remove(&token) {
86+
poll.registry().deregister(&mut connection)?;
87+
}
8688
}
8789
}
8890
}

0 commit comments

Comments
 (0)