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