Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RunServer : buffer to small #3

Open
Lavoillotte opened this issue Feb 21, 2020 · 0 comments
Open

RunServer : buffer to small #3

Lavoillotte opened this issue Feb 21, 2020 · 0 comments

Comments

@Lavoillotte
Copy link

Lavoillotte commented Feb 21, 2020

Hi

I found a bug in your SimpleWebSocketServer.
Class WebSocketHttpServer, function RunServer
buffer is to small when headers contains cookies

I propose this version for reading headers :
`...
byte[] temp = new byte[maxRead];
byte[] buffer= new byte[maxRead];
int bytesRead;
int totalBytes = 0;
while ((bytesRead=await stream.ReadAsync(temp, 0, maxRead))>0)
{
System.Array.Copy(temp, 0, buffer, totalBytes, bytesRead);
totalBytes += bytesRead;
if (stream.DataAvailable)
System.Array.Resize(ref buffer, totalBytes+bytesRead);
else
break;
}

string received = Encoding.UTF8.GetString(buffer, 0, totalBytes);
....`

regards
Nicolas

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant