[][src]Struct openvpn_parser::openvpn::PAck

pub struct PAck<'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 remote_session_id: Option<u64>,
}

Payload for P_ACK messages

Fields

session_id: u64hmac: &'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: u8msg_ar: Option<Vec<u32>>remote_session_id: Option<u64>

Trait Implementations

impl<'a> PartialEq<PAck<'a>> for PAck<'a>[src]

impl<'a> Debug for PAck<'a>[src]

Auto Trait Implementations

impl<'a> Send for PAck<'a>

impl<'a> Sync for PAck<'a>

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.