simple_someip/protocol/sd/
mod.rs1mod entry;
2mod error;
3mod flags;
4mod header;
5mod options;
6
7#[cfg(test)]
8pub(crate) mod test_support;
9
10use core::net::Ipv4Addr;
11
12pub const MULTICAST_IP: Ipv4Addr = Ipv4Addr::new(239, 255, 0, 255);
14pub const MULTICAST_PORT: u16 = 30490;
16pub const MESSAGE_ID_VALUE: u32 = 0xffff_8100;
18
19pub use entry::{
22 Entry, EntryIter, EntryType, EntryView, EventGroupEntry, OptionsCount, ServiceEntry,
23};
24pub use error::Error;
25pub use flags::Flags;
26pub use header::{Header, SdHeaderView};
27pub use options::{
28 MAX_CONFIGURATION_STRING_LENGTH, OptionIter, OptionType, OptionView, Options,
29 TransportProtocol, extract_ipv4_endpoint,
30};