//! Optional raw multicast receive support.
//!
//! Enable this module with the `raw-packets` Cargo feature when you need
//! complete multicast IP datagrams instead of UDP payloads.
//!
//! Linux and macOS can receive IPv4 and IPv6 raw multicast datagrams. Windows
//! currently supports IPv4 raw receive only. Unsupported modes return a clear
//! error rather than silently degrading to UDP payload receive.
pub use RawSubscriptionConfig;
pub use RawContext;
pub use RawPacket;
pub use RawSubscription;