#tcp #tokio #listen #bind #network-programming

tk-listen

A set of helper futures allowing to listen TCP (or unix) socket with resource limits and proper error handling

4 releases

Uses old Rust 2015

0.2.1 Dec 15, 2018
0.2.0 May 24, 2018
0.1.1 Oct 19, 2017
0.1.0 Mar 16, 2017

#759 in Asynchronous

Download history 483/week @ 2023-11-20 382/week @ 2023-11-27 369/week @ 2023-12-04 471/week @ 2023-12-11 487/week @ 2023-12-18 271/week @ 2023-12-25 259/week @ 2024-01-01 446/week @ 2024-01-08 486/week @ 2024-01-15 429/week @ 2024-01-22 500/week @ 2024-01-29 574/week @ 2024-02-05 630/week @ 2024-02-12 598/week @ 2024-02-19 600/week @ 2024-02-26 548/week @ 2024-03-04

2,453 downloads per month
Used in 25 crates (10 directly)

MIT/Apache

23KB
272 lines

Tokio Listen Helpers

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

Example

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

More in docs and examples

License

Licensed under either of

Contribution

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.

Dependencies

~3.5MB
~54K SLoC