pub struct Ospfv3LinkStateAdvertisementHeader {
pub ls_age: u16,
pub link_state_type: Ospfv3LinkStateType,
pub link_state_id: u32,
pub advertising_router: u32,
pub ls_seq_number: u32,
pub ls_checksum: u16,
pub length: u16,
}
Expand description
The Link State Advertisement header
All LSAs begin with a common 20-byte header. This header contains enough information to uniquely identify the LSA (LS type, Link State ID, and Advertising Router). Multiple instances of the LSA may exist in the routing domain at the same time. It is then necessary to determine which instance is more recent. This is accomplished by examining the LS age, LS sequence number, and LS checksum fields that are also contained in the LSA header.
Fields§
§ls_age: u16
§link_state_type: Ospfv3LinkStateType
§link_state_id: u32
§advertising_router: u32
§ls_seq_number: u32
§ls_checksum: u16
§length: u16
Implementations§
Source§impl Ospfv3LinkStateAdvertisementHeader
impl Ospfv3LinkStateAdvertisementHeader
pub fn link_state_id(&self) -> Ipv4Addr
pub fn advertising_router(&self) -> Ipv4Addr
Trait Implementations§
Source§impl<'nom> Parse<&'nom [u8]> for Ospfv3LinkStateAdvertisementHeader
impl<'nom> Parse<&'nom [u8]> for Ospfv3LinkStateAdvertisementHeader
Auto Trait Implementations§
impl Freeze for Ospfv3LinkStateAdvertisementHeader
impl RefUnwindSafe for Ospfv3LinkStateAdvertisementHeader
impl Send for Ospfv3LinkStateAdvertisementHeader
impl Sync for Ospfv3LinkStateAdvertisementHeader
impl Unpin for Ospfv3LinkStateAdvertisementHeader
impl UnwindSafe for Ospfv3LinkStateAdvertisementHeader
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