stun_rs/attributes/
ice.rsmod ice_controlled;
mod ice_controlling;
mod priority;
mod use_candidate;
use crate::registry::DecoderRegistry;
pub use ice_controlled::IceControlled;
pub use ice_controlling::IceControlling;
pub use priority::Priority;
pub use use_candidate::UseCandidate;
pub(crate) fn ice_register_attributes(registry: &mut DecoderRegistry) {
registry.register::<IceControlled>();
registry.register::<IceControlling>();
registry.register::<Priority>();
registry.register::<UseCandidate>();
}