Crates.io | stun-proto |
lib.rs | stun-proto |
version | 0.2.0 |
source | src |
created_at | 2024-06-16 12:19:38.753809 |
updated_at | 2024-07-14 01:06:56.731318 |
description | STUN protocol in a sans-IO fashion |
homepage | |
repository | https://github.com/ystreet/stun-proto |
max_upload_size | |
id | 1273492 |
size | 69,559 |
Repository containing a sans-IO implementation of the STUN (RFC5389/RFC8489) protocol written in the Rust programming language.
A couple of reasons: reusability, and testability.
Without being bogged down in the details of how IO happens, the same sans-IO implementation can be used without prescribing the IO pattern that an application must follow. Instead, the application (or parent library) has much more freedom in how bytes are transferred between peers. It's also possible to us a sans-IO library in either a synchronous or within an asynchronous runtime.
sans-IO also allows easy testing of any specific state the sans-IO implementation might find itself in. Combined with a comprehensive test-suite, this provides assurance that the implementation behaves as expected under all circumstances.
For other examples of sans-IO implementations, take a look at: