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:
James Gray 2024-01-30 16:09:50 +02:00
parent 14ec64a888
commit 1774aeb67a
1 changed files with 11 additions and 10 deletions

21
http2.d
View File

@ -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;