Crates.io | tk-listen |
lib.rs | tk-listen |
version | 0.2.1 |
source | src |
created_at | 2017-03-16 14:03:52.226545 |
updated_at | 2018-12-15 14:16:28.72562 |
description | A set of helper futures allowing to listen TCP (or unix) socket with resource limits and proper error handling. |
homepage | http://github.com/tailhook/tk-listen |
repository | |
max_upload_size | |
id | 8997 |
size | 43,302 |
Status: Beta
Documentation | Github | Crate
A library that allows to listen network sockets with proper resource limits and error handling.
Basic challenges:
Some connection accept errors (like "connection reset") must be ignored, some (like "too many files open") may consume 100% CPU when ignored. You need to know what to do with them every time
Server must accept connections up to a certain limit to avoid DoS attacks
Shutting down listener and update the set of addresses listened should be obvious to implement
Here is the basic example:
let TIME_TO WAIT_ON_ERROR = Duration::from_millis(100);
let MAX_SIMULTANEOUS_CONNECTIONS = 1000;
let mut lp = Core::new().unwrap();
let listener = TcpListener::bind(&addr, &lp.handle()).unwrap();
lp.run(
listener.incoming()
.sleep_on_error(TIME_TO_WAIT_ON_ERROR, &h2)
.map(move |(mut socket, _addr)| {
// Your future is here:
Proto::new(socket)
// Errors should not pass silently
// common idea is to log them
.map_err(|e| error!("Protocol error: {}", e))
})
.listen(MAX_SIMULTANEOUS_CONNECTIONS)
).unwrap(); // stream doesn't end in this case
Licensed under either of
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.