pub struct PControl<'a> {
pub session_id: u64,
pub hmac: &'a [u8],
pub packet_id: u32,
pub net_time: u32,
pub msg_ar_len: u8,
pub msg_ar: Option<Vec<u32>>,
pub msg_packet_id: u32,
pub remote_session_id: Option<u64>,
pub payload: &'a [u8],
}
Expand description
Payload for P_CONTROL messages
Fields§
§session_id: u64
§hmac: &'a [u8]
16 or 20 bytes
packet_id: u32
replay protection, 4 or 8 bytes (see net_time
)
net_time: u32
Optional part of replay protection
msg_ar_len: u8
§msg_ar: Option<Vec<u32>>
§msg_packet_id: u32
§remote_session_id: Option<u64>
§payload: &'a [u8]
Trait Implementations§
impl<'a> StructuralPartialEq for PControl<'a>
Auto Trait Implementations§
impl<'a> Freeze for PControl<'a>
impl<'a> RefUnwindSafe for PControl<'a>
impl<'a> Send for PControl<'a>
impl<'a> Sync for PControl<'a>
impl<'a> Unpin for PControl<'a>
impl<'a> UnwindSafe for PControl<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more