Fix due to the modified WsFrame.cs

This commit is contained in:
sta
2013-04-12 14:42:25 +09:00
parent 672e48796a
commit 815d12f6a0
32 changed files with 318 additions and 243 deletions

View File

@@ -1,4 +1,4 @@
#region MIT License
#region License
/*
* Opcode.cs
*
@@ -43,11 +43,11 @@ namespace WebSocketSharp {
/// <summary>
/// Equivalent to numeric value 0. Indicates a continuation frame.
/// </summary>
CONT = 0x0,
CONT = 0x0,
/// <summary>
/// Equivalent to numeric value 1. Indicates a text frame.
/// </summary>
TEXT = 0x1,
TEXT = 0x1,
/// <summary>
/// Equivalent to numeric value 2. Indicates a binary frame.
/// </summary>
@@ -55,14 +55,14 @@ namespace WebSocketSharp {
/// <summary>
/// Equivalent to numeric value 8. Indicates a connection close frame.
/// </summary>
CLOSE = 0x8,
CLOSE = 0x8,
/// <summary>
/// Equivalent to numeric value 9. Indicates a ping frame.
/// </summary>
PING = 0x9,
PING = 0x9,
/// <summary>
/// Equivalent to numeric value 10. Indicates a pong frame.
/// </summary>
PONG = 0xa
PONG = 0xa
}
}