#[repr(C, packed(1))]pub struct TcpMd5AddKeyRequest {
pub header: Header,
pub association: Association,
pub lifetime: Lifetime,
pub src: Address,
pub dst: Address,
pub key: StrAuth,
}
Expand description
A packet to add a TCP-MD5 security association.
Fields§
§header: Header
Packet header.
association: Association
Association info.
lifetime: Lifetime
Lifetime info.
src: Address
Source socket address to bind to.
dst: Address
Destination socket address to bind to.
key: StrAuth
String-based key.
Implementations§
Auto Trait Implementations§
impl Freeze for TcpMd5AddKeyRequest
impl RefUnwindSafe for TcpMd5AddKeyRequest
impl Send for TcpMd5AddKeyRequest
impl Sync for TcpMd5AddKeyRequest
impl Unpin for TcpMd5AddKeyRequest
impl UnwindSafe for TcpMd5AddKeyRequest
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