stun_codec 0.4.0

Encoders and decoders for STUN (RFC 5389) and its extensions
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! [RFC 5780(NAT Behavior Discovery)][RFC 5780] specific components.
//!
//! [RFC 5780]: https://tools.ietf.org/html/rfc5780
use self::attributes::*;

pub mod attributes;

define_attribute_enums!(
    Attribute,
    AttributeDecoder,
    AttributeEncoder,
    [ChangeRequest, ResponseOrigin, ResponsePort, OtherAddress]
);