6 releases
0.0.12 | Jun 26, 2024 |
---|---|
0.0.11 | Jan 26, 2024 |
0.0.10 | Dec 7, 2023 |
0.0.9 | Jul 9, 2023 |
0.0.0-alpha.3 |
|
#1139 in Network programming
9,216 downloads per month
Used in 7 crates
16KB
228 lines
udp-stream
udp-stream
is a Rust library that provides a simple API for handling streaming data over the User Datagram Protocol (UDP), similar to TcpStream. It abstracts the complexities of working with UDP, such as handling packet fragmentation, reassembly, and flow control, making it easy for developers to send and receive continuous streams of data over UDP sockets especially when using DTLS protocol.
Features
-
Stream-based:
udp-stream
provides an abstraction layer for handling UDP packets as a continuous stream of data, using a similar function signature asTcpStream
in thetokio
library. This allows developers familiar withtokio
to leverage their existing knowledge to work with UDP in a similar manner. -
Lightweight:
udp-stream
has a small footprint and only depends on thetokio
andbytes
libraries, making it lightweight and easy to integrate into your existing projects.
Usage
To use udp-stream
in your Rust project, simply add it as a dependency in your Cargo.toml
file:
toml
udp-stream = "0.0.11"
Then, you can import and use the library in your Rust code:
rust
use std::{net::SocketAddr, str::FromStr};
use tokio::io::{AsyncReadExt, AsyncWriteExt};
use udp_stream::UdpStream;
#[tokio::main]
async fn main() -> Result<(), Box<dyn Error>> {
let mut stream = UdpStream::connect(SocketAddr::from_str("127.0.0.1:8080")?).await?;
println!("Ready to Connected to {}", &stream.peer_addr()?);
let mut buffer = String::new();
loop {
std::io::stdin().read_line(&mut buffer)?;
stream.write_all(buffer.as_bytes()).await?;
let mut buf = vec![0u8; 1024];
let n = stream.read(&mut buf).await?;
print!("-> {}", String::from_utf8_lossy(&buf[..n]));
buffer.clear();
}
}
For more details on how to use udp-stream
, including configuration options, using for DTLS, and advanced usage, please refer to the examples.
Contributing
Contributions to udp-stream
are welcome! If you would like to contribute to the library, please follow the standard Rust community guidelines for contributing, including opening issues, submitting pull requests, and providing feedback.
License
udp-stream
is licensed under the MIT License, which allows for free use, modification, and distribution, subject to the terms and conditions outlined in the license.
We hope that udp-stream
is useful for your projects! If you have any questions or need further assistance, please don't hesitate to contact us or open an issue in the repository.
Dependencies
~3–11MB
~109K SLoC