//! Methods that are defined in [RFC 5766 -- 13. New STUN Methods].
//!
//! [RFC 5766 -- 13. New STUN Methods]: https://tools.ietf.org/html/rfc5766#section-13
use crateMethod;
/// Allocate method.
///
/// Only request/response semantics defined.
pub const ALLOCATE: Method = Method;
/// Reference method.
///
/// Only request/response semantics defined.
pub const REFRESH: Method = Method;
/// Send method.
///
/// Only indication semantics defined.
pub const SEND: Method = Method;
/// Data method.
///
/// only indication semantics defined.
pub const DATA: Method = Method;
/// CreatePermission method.
///
/// Only request/response semantics defined.
pub const CREATE_PERMISSION: Method = Method;
/// ChannelBind method.
///
/// Only request/response semantics defined.
pub const CHANNEL_BIND: Method = Method;