Merge pull request #305 from Panke/master

fix: websocket's 64bit length calculation
This commit is contained in:
Adam D. Ruppe 2021-09-25 07:50:04 -04:00 committed by GitHub
commit fde60ff8d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -4188,7 +4188,7 @@ public {
if(d.length < 8) return needsMoreData();
foreach(i; 0 .. 8) {
msg.realLength |= d[0] << ((7-i) * 8);
msg.realLength |= ulong(d[0]) << ((7-i) * 8);
d = d[1 .. $];
}
} else {