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/Fin.cs
vendored
Normal file
22
Vendor/EmbedIO-3.5.2/WebSockets/Internal/Fin.cs
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
namespace EmbedIO.WebSockets.Internal
|
||||
{
|
||||
/// <summary>
|
||||
/// Indicates whether a WebSocket frame is the final frame of a message.
|
||||
/// </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 Fin : byte
|
||||
{
|
||||
/// <summary>
|
||||
/// Equivalent to numeric value 0. Indicates more frames of a message follow.
|
||||
/// </summary>
|
||||
More = 0x0,
|
||||
|
||||
/// <summary>
|
||||
/// Equivalent to numeric value 1. Indicates the final frame of a message.
|
||||
/// </summary>
|
||||
Final = 0x1,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user