rusbmux 0.1.0

a pluggable usbmuxd rewrite in rust that can be used as non-daemon
Documentation
1
2
3
4
5
6
7
8
9
10
#[derive(Debug, Clone, Copy)]
pub struct UsbMuxHeader {
    pub len: u32,
    pub version: u32,
    pub message_type: u32,
    pub tag: u32,
}

unsafe impl bytemuck::Zeroable for UsbMuxHeader {}
unsafe impl bytemuck::Pod for UsbMuxHeader {}