mirror of https://github.com/adamdruppe/arsd.git
Further changes to allow cookies to be sent from config when using
websocket. 1. Only add 'Cookie' header if there are cookies. 2. Capatalize header. 3. Corrected separater to `; `.
This commit is contained in:
parent
14ec64a888
commit
1774aeb67a
21
http2.d
21
http2.d
|
@ -4705,17 +4705,18 @@ class WebSocket {
|
||||||
|
|
||||||
// FIXME: randomize this
|
// FIXME: randomize this
|
||||||
append("Sec-WebSocket-Key: x3JEHMbDL1EzLkh9GBhXDw==\r\n");
|
append("Sec-WebSocket-Key: x3JEHMbDL1EzLkh9GBhXDw==\r\n");
|
||||||
|
if(cookies.length > 0) {
|
||||||
append("cookie: ");
|
append("Cookie: ");
|
||||||
bool first=true;
|
bool first=true;
|
||||||
foreach(k,v;cookies) {
|
foreach(k,v;cookies) {
|
||||||
if(first) first = false;
|
if(first) first = false;
|
||||||
else append(" ");
|
else append("; ");
|
||||||
append(k);
|
append(k);
|
||||||
append("=");
|
append("=");
|
||||||
append(v);
|
append(v);
|
||||||
|
}
|
||||||
|
append("\r\n");
|
||||||
}
|
}
|
||||||
append("\r\n");
|
|
||||||
/*
|
/*
|
||||||
//This is equivalent but has dependencies
|
//This is equivalent but has dependencies
|
||||||
import std.format;
|
import std.format;
|
||||||
|
|
Loading…
Reference in New Issue