//! OSPFv2 packet bodies (RFC 2328 §A.3).
//!
//! The five OSPFv2 packet types (Hello, Database Description, Link State
//! Request, Link State Update, Link State Acknowledgment) follow the shared
//! 24-octet common header. Each body lives inside the [`Ospfv2`](super::Ospfv2)
//! layer as an [`OspfBody`](super::OspfBody) variant (BGP-style enum bodies)
//! rather than as a separate [`Layer`](crate::packet::Layer); the body struct
//! provides `encoded_len()`/`encode()` that the layer's `compile()` routes to.
//!
//! This block adds the Hello body ([`OspfHello`], RFC 2328 §A.3.2), the
//! Database Description body ([`OspfDatabaseDescription`], RFC 2328 §A.3.3), the
//! Link State Request body ([`OspfLinkStateRequest`], RFC 2328 §A.3.4), and the
//! Link State Acknowledgment body ([`OspfLinkStateAck`], RFC 2328 §A.3.6); the
//! other bodies are added by subsequent steps.
pub use OspfDatabaseDescription;
pub use OspfHello;
pub use OspfLinkStateAck;
pub use ;
pub use OspfLinkStateUpdate;