Fix due to the modified Ext.cs
This commit is contained in:
parent
db9be84e85
commit
eef827f78d
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -146,6 +146,23 @@ namespace WebSocketSharp {
|
|||||||
|
|
||||||
#region Internal Methods
|
#region Internal Methods
|
||||||
|
|
||||||
|
internal static byte[] Append(this ushort code, string reason)
|
||||||
|
{
|
||||||
|
using (var buffer = new MemoryStream())
|
||||||
|
{
|
||||||
|
var tmp = code.ToByteArray(ByteOrder.BIG);
|
||||||
|
buffer.Write(tmp, 0, 2);
|
||||||
|
if (reason != null && reason.Length > 0)
|
||||||
|
{
|
||||||
|
tmp = Encoding.UTF8.GetBytes(reason);
|
||||||
|
buffer.Write(tmp, 0, tmp.Length);
|
||||||
|
}
|
||||||
|
|
||||||
|
buffer.Close();
|
||||||
|
return buffer.ToArray();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
internal static byte[] Compress(this byte[] value, CompressionMethod method)
|
internal static byte[] Compress(this byte[] value, CompressionMethod method)
|
||||||
{
|
{
|
||||||
return method == CompressionMethod.DEFLATE
|
return method == CompressionMethod.DEFLATE
|
||||||
|
@ -467,28 +467,14 @@ namespace WebSocketSharp {
|
|||||||
|
|
||||||
private void close(ushort code, string reason)
|
private void close(ushort code, string reason)
|
||||||
{
|
{
|
||||||
using (var buffer = new MemoryStream())
|
var data = code.Append(reason);
|
||||||
|
if (data.Length > 125)
|
||||||
{
|
{
|
||||||
var tmp = code.ToByteArray(ByteOrder.BIG);
|
onError("The payload length of a Close frame must be 125 bytes or less.");
|
||||||
buffer.Write(tmp, 0, tmp.Length);
|
return;
|
||||||
if (!reason.IsNullOrEmpty())
|
|
||||||
{
|
|
||||||
tmp = Encoding.UTF8.GetBytes(reason);
|
|
||||||
buffer.Write(tmp, 0, tmp.Length);
|
|
||||||
}
|
|
||||||
|
|
||||||
buffer.Close();
|
|
||||||
var data = buffer.ToArray();
|
|
||||||
if (data.Length > 125)
|
|
||||||
{
|
|
||||||
var msg = "The payload length of a Close frame must be 125 bytes or less.";
|
|
||||||
onError(msg);
|
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
close(new PayloadData(data));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
close(new PayloadData(data));
|
||||||
}
|
}
|
||||||
|
|
||||||
private void closeHandshake(PayloadData data)
|
private void closeHandshake(PayloadData data)
|
||||||
|
@ -226,21 +226,10 @@ namespace WebSocketSharp {
|
|||||||
|
|
||||||
#region Private Methods
|
#region Private Methods
|
||||||
|
|
||||||
private static WsFrame createCloseFrame(CloseStatusCode code, string message)
|
private static WsFrame createCloseFrame(CloseStatusCode code, string reason, Mask mask)
|
||||||
{
|
{
|
||||||
using (var buffer = new MemoryStream())
|
var data = ((ushort)code).Append(reason);
|
||||||
{
|
return new WsFrame(Fin.FINAL, Opcode.CLOSE, mask, new PayloadData(data));
|
||||||
var tmp = ((ushort)code).ToByteArray(ByteOrder.BIG);
|
|
||||||
buffer.Write(tmp, 0, 2);
|
|
||||||
if (message.Length != 0)
|
|
||||||
{
|
|
||||||
tmp = Encoding.UTF8.GetBytes(message);
|
|
||||||
buffer.Write(tmp, 0, tmp.Length);
|
|
||||||
}
|
|
||||||
|
|
||||||
buffer.Close();
|
|
||||||
return new WsFrame(Fin.FINAL, Opcode.CLOSE, Mask.UNMASK, new PayloadData(buffer.ToArray()));
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private static byte[] createMaskingKey()
|
private static byte[] createMaskingKey()
|
||||||
@ -393,7 +382,8 @@ namespace WebSocketSharp {
|
|||||||
|
|
||||||
if (isControl(opcode) && payloadLen > 125)
|
if (isControl(opcode) && payloadLen > 125)
|
||||||
return createCloseFrame(CloseStatusCode.INCONSISTENT_DATA,
|
return createCloseFrame(CloseStatusCode.INCONSISTENT_DATA,
|
||||||
"The payload length of a control frame must be 125 bytes or less.");
|
"The payload length of a control frame must be 125 bytes or less.",
|
||||||
|
Mask.UNMASK);
|
||||||
|
|
||||||
var frame = new WsFrame {
|
var frame = new WsFrame {
|
||||||
Fin = fin,
|
Fin = fin,
|
||||||
@ -419,7 +409,8 @@ namespace WebSocketSharp {
|
|||||||
|
|
||||||
if (extLen > 0 && extPayloadLen.Length != extLen)
|
if (extLen > 0 && extPayloadLen.Length != extLen)
|
||||||
return createCloseFrame(CloseStatusCode.ABNORMAL,
|
return createCloseFrame(CloseStatusCode.ABNORMAL,
|
||||||
"'Extended Payload Length' of a frame cannot be read from the data stream.");
|
"'Extended Payload Length' of a frame cannot be read from the data stream.",
|
||||||
|
Mask.UNMASK);
|
||||||
|
|
||||||
frame.ExtPayloadLen = extPayloadLen;
|
frame.ExtPayloadLen = extPayloadLen;
|
||||||
|
|
||||||
@ -432,7 +423,8 @@ namespace WebSocketSharp {
|
|||||||
|
|
||||||
if (masked && maskingKey.Length != 4)
|
if (masked && maskingKey.Length != 4)
|
||||||
return createCloseFrame(CloseStatusCode.ABNORMAL,
|
return createCloseFrame(CloseStatusCode.ABNORMAL,
|
||||||
"'Masking Key' of a frame cannot be read from the data stream.");
|
"'Masking Key' of a frame cannot be read from the data stream.",
|
||||||
|
Mask.UNMASK);
|
||||||
|
|
||||||
frame.MaskingKey = maskingKey;
|
frame.MaskingKey = maskingKey;
|
||||||
|
|
||||||
@ -450,7 +442,7 @@ namespace WebSocketSharp {
|
|||||||
if (payloadLen > 126 && dataLen > PayloadData.MaxLength)
|
if (payloadLen > 126 && dataLen > PayloadData.MaxLength)
|
||||||
{
|
{
|
||||||
var code = CloseStatusCode.TOO_BIG;
|
var code = CloseStatusCode.TOO_BIG;
|
||||||
return createCloseFrame(code, code.GetMessage());
|
return createCloseFrame(code, code.GetMessage(), Mask.UNMASK);
|
||||||
}
|
}
|
||||||
|
|
||||||
data = dataLen > 1024
|
data = dataLen > 1024
|
||||||
@ -459,7 +451,8 @@ namespace WebSocketSharp {
|
|||||||
|
|
||||||
if (data.LongLength != (long)dataLen)
|
if (data.LongLength != (long)dataLen)
|
||||||
return createCloseFrame(CloseStatusCode.ABNORMAL,
|
return createCloseFrame(CloseStatusCode.ABNORMAL,
|
||||||
"'Payload Data' of a frame cannot be read from the data stream.");
|
"'Payload Data' of a frame cannot be read from the data stream.",
|
||||||
|
Mask.UNMASK);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@ -557,7 +550,8 @@ namespace WebSocketSharp {
|
|||||||
frame = header.Length == 2
|
frame = header.Length == 2
|
||||||
? parse(header, stream, unmask)
|
? parse(header, stream, unmask)
|
||||||
: createCloseFrame(CloseStatusCode.ABNORMAL,
|
: createCloseFrame(CloseStatusCode.ABNORMAL,
|
||||||
"'Header' of a frame cannot be read from the data stream.");
|
"'Header' of a frame cannot be read from the data stream.",
|
||||||
|
Mask.UNMASK);
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
@ -601,7 +595,8 @@ namespace WebSocketSharp {
|
|||||||
frame = readLen == 2
|
frame = readLen == 2
|
||||||
? parse(header, stream, unmask)
|
? parse(header, stream, unmask)
|
||||||
: createCloseFrame(CloseStatusCode.ABNORMAL,
|
: createCloseFrame(CloseStatusCode.ABNORMAL,
|
||||||
"'Header' of a frame cannot be read from the data stream.");
|
"'Header' of a frame cannot be read from the data stream.",
|
||||||
|
Mask.UNMASK);
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
|
Binary file not shown.
Loading…
Reference in New Issue
Block a user