#[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: HeaderPacket header.
association: AssociationAssociation info.
lifetime: LifetimeLifetime info.
src: AddressSource socket address to bind to.
dst: AddressDestination socket address to bind to.
key: StrAuthString-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