[Modify] Polish it

This commit is contained in:
sta 2021-12-08 19:49:29 +09:00
parent 8828432149
commit a06e8ea4c2

View File

@ -662,13 +662,16 @@ Extended Payload Length: {7}
) )
{ {
var exactLen = frame.ExactPayloadLength; var exactLen = frame.ExactPayloadLength;
if (exactLen > PayloadData.MaxLength) { if (exactLen > PayloadData.MaxLength) {
var msg = "A frame has too long payload length."; var msg = "A frame has too long payload length.";
throw new WebSocketException (CloseStatusCode.TooBig, msg); throw new WebSocketException (CloseStatusCode.TooBig, msg);
} }
if (exactLen == 0) { if (exactLen == 0) {
frame._payloadData = PayloadData.Empty; frame._payloadData = PayloadData.Empty;
return frame; return frame;
} }
@ -679,10 +682,12 @@ Extended Payload Length: {7}
if (bytes.LongLength != len) { if (bytes.LongLength != len) {
var msg = "The payload data of a frame could not be read."; var msg = "The payload data of a frame could not be read.";
throw new WebSocketException (msg); throw new WebSocketException (msg);
} }
frame._payloadData = new PayloadData (bytes, len); frame._payloadData = new PayloadData (bytes, len);
return frame; return frame;
} }