namespace EmbedIO.WebSockets.Internal
{
///
/// Indicates whether each RSV (RSV1, RSV2, and RSV3) of a WebSocket frame is non-zero.
///
///
/// The values of this enumeration are defined in
/// Section 5.2 of RFC 6455.
///
internal enum Rsv : byte
{
///
/// Equivalent to numeric value 0. Indicates zero.
///
Off = 0x0,
///
/// Equivalent to numeric value 1. Indicates non-zero.
///
On = 0x1,
}
}