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
|
||||
append("Sec-WebSocket-Key: x3JEHMbDL1EzLkh9GBhXDw==\r\n");
|
||||
|
||||
append("cookie: ");
|
||||
bool first=true;
|
||||
foreach(k,v;cookies) {
|
||||
if(first) first = false;
|
||||
else append(" ");
|
||||
append(k);
|
||||
append("=");
|
||||
append(v);
|
||||
if(cookies.length > 0) {
|
||||
append("Cookie: ");
|
||||
bool first=true;
|
||||
foreach(k,v;cookies) {
|
||||
if(first) first = false;
|
||||
else append("; ");
|
||||
append(k);
|
||||
append("=");
|
||||
append(v);
|
||||
}
|
||||
append("\r\n");
|
||||
}
|
||||
append("\r\n");
|
||||
/*
|
||||
//This is equivalent but has dependencies
|
||||
import std.format;
|
||||
|
|
Loading…
Reference in New Issue