bancho-packet 0.2.0

Library for handling osu!'s packets
Documentation
  • Coverage
  • 0%
    0 out of 259 items documented0 out of 51 items with examples
  • Size
  • Source code size: 54.57 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 7.06 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 12s Average build duration of successful builds.
  • all releases: 12s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • mayacopeland

bancho-packets

Packet Serializer and Deserializer for osu!

example writing usage

use bancho_packets::*;
...
let mut buffer = BytesMut::new();
bancho_packet::bancho_channel_join_success(&mut buffer, "#osu");
...

example reading usage (assuming in_buf is a BytesMut with packets)

use bancho_packets::*;
let status = bancho_packet::reader::client_user_status(&mut in_buf);