Got at least one data fetching method working; turns out, we can't use a patched LogicStack to get the data
This commit is contained in:
22
Vendor/EmbedIO-3.5.2/WebSockets/Internal/Rsv.cs
vendored
Normal file
22
Vendor/EmbedIO-3.5.2/WebSockets/Internal/Rsv.cs
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
namespace EmbedIO.WebSockets.Internal
|
||||
{
|
||||
/// <summary>
|
||||
/// Indicates whether each RSV (RSV1, RSV2, and RSV3) of a WebSocket frame is non-zero.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// The values of this enumeration are defined in
|
||||
/// <see href="http://tools.ietf.org/html/rfc6455#section-5.2">Section 5.2</see> of RFC 6455.
|
||||
/// </remarks>
|
||||
internal enum Rsv : byte
|
||||
{
|
||||
/// <summary>
|
||||
/// Equivalent to numeric value 0. Indicates zero.
|
||||
/// </summary>
|
||||
Off = 0x0,
|
||||
|
||||
/// <summary>
|
||||
/// Equivalent to numeric value 1. Indicates non-zero.
|
||||
/// </summary>
|
||||
On = 0x1,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user