mirror of https://github.com/adamdruppe/arsd.git
fixes
This commit is contained in:
parent
65e9f3302c
commit
3ca4779971
4
http2.d
4
http2.d
|
@ -4118,7 +4118,9 @@ public {
|
||||||
|
|
||||||
//assert(!masked, "masking key not properly implemented");
|
//assert(!masked, "masking key not properly implemented");
|
||||||
if(masked) {
|
if(masked) {
|
||||||
// FIXME: randomize this
|
import std.random;
|
||||||
|
foreach(ref item; maskingKey)
|
||||||
|
item = uniform(ubyte.min, ubyte.max);
|
||||||
headerScratch[headerScratchPos .. headerScratchPos + 4] = maskingKey[];
|
headerScratch[headerScratchPos .. headerScratchPos + 4] = maskingKey[];
|
||||||
headerScratchPos += 4;
|
headerScratchPos += 4;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue