Crates.io | raknet-rs |
lib.rs | raknet-rs |
version | 0.1.4 |
source | src |
created_at | 2024-02-09 02:03:15.557724 |
updated_at | 2024-10-15 09:08:40.541561 |
description | Raknet protocol implementation by rust |
homepage | https://github.com/MemoriesOfTime/raknet-rs |
repository | https://github.com/MemoriesOfTime/raknet-rs |
max_upload_size | |
id | 1132955 |
size | 350,606 |
Yet another project rewritten in Rust.
Stream
/Sink
/Future
based async API.
Unreliable
, Reliable
and ReliableOrdered
packets.ACK
/NACK
mechanism.Ordered by priority
See examples or integration testing for basic usage.
Most operations are performed on Stream
and Sink
. There will be some options in opts.
The implementation details are obscured, and you can only see a very high level of abstraction, including the Error
type, which is just std::io::Error
.
Keep polling incoming
because it also serves as the router to every connections.
Apply Sink::poll_flush
to IO will trigger to flush all pending packets, ACK
/NACK
, and stale packets. So you have to call poll_flush
periodically. You can configure the flush strategy you want.
Apply Sink::poll_close
to IO will ensure that all data is received by the peer before returning. It may keep resending infinitely unless you cancel the task. So you'd better set a timeout for each poll_close
.
[!NOTE] All calculations are lazy. The state will not update if you do not poll it.
use bytes::Bytes;
use futures::{SinkExt, StreamExt};
use raknet_rs::server::{self, MakeIncoming};
let socket = tokio::net::UdpSocket::bind("127.0.0.1:0").await?;
let config = server::Config::new()
.send_buf_cap(1024)
.sever_guid(114514)
.advertisement(&b"Hello, I am server"[..])
...
let mut incoming = socket.make_incoming(config);
let (reader, _) = incoming.next().await.unwrap();
tokio::pin!(reader);
let data: Bytes = reader.next().await.unwrap();
[!WARNING] The current version of the client only has the most basic handshake implementation, and it is not recommended to use it directly.
use bytes::Bytes;
use futures::{SinkExt, StreamExt};
use raknet_rs::client::{self, ConnectTo};
use raknet_rs::Reliability;
let socket = tokio::net::UdpSocket::bind("0.0.0.0:0").await?;
let config = client::Config::new()
.send_buf_cap(1024)
.client_guid(1919810)
...
let (_, writer) = socket.connect_to(<addr>, config).await?;
tokio::pin!(writer);
writer.send(Message::new(Reliability::Reliable, 0, Bytes::from_static(b"Hello, Anyone there?")))
.await?;