Implement native UDP transport reliability (#52)
Some checks failed
Native code generation / deterministic (push) Failing after 7m48s
Imaging and meshing gate / native (push) Failing after 17s
JPEG 2000 feature / linux (push) Failing after 58s
Skia feature / linux (push) Failing after 1m33s

This commit is contained in:
2026-08-09 11:39:59 +00:00
parent b413cd6f4d
commit c7777d42f5
13 changed files with 2593 additions and 214 deletions

View File

@@ -106,8 +106,8 @@ fn client_and_settings_construct_without_starting_runtime_work() {
member_id(CapsRateLimiter::new_with_constructor()),
"M:LibreMetaverse.CapsRateLimiter.#ctor"
);
assert_eq!(
member_id(UDPPacketBuffer::new_with_constructor()),
"M:LibreMetaverse.UDPPacketBuffer.#ctor"
);
let udp_buffer = UDPPacketBuffer::new_with_constructor().expect("UDP packet buffer");
assert_eq!(udp_buffer.data.len(), 4096);
assert_eq!(udp_buffer.data_length, 0);
assert_eq!(udp_buffer.remote_end_point, "0.0.0.0:0".parse().unwrap());
}