mirror of https://github.com/adamdruppe/arsd.git
Merge pull request #423 from jamesragray/http2-websocket-cookies
Fixed so that cookies from Config are sent on websocket connection.
This commit is contained in:
commit
514a011097
19
http2.d
19
http2.d
|
@ -4618,6 +4618,7 @@ class WebSocket {
|
||||||
socket = new Socket(family(uri.unixSocketPath), SocketType.STREAM);
|
socket = new Socket(family(uri.unixSocketPath), SocketType.STREAM);
|
||||||
|
|
||||||
socket.setOption(SocketOptionLevel.TCP, SocketOption.TCP_NODELAY, 1);
|
socket.setOption(SocketOptionLevel.TCP, SocketOption.TCP_NODELAY, 1);
|
||||||
|
cookies = config.cookies;
|
||||||
}
|
}
|
||||||
|
|
||||||
/++
|
/++
|
||||||
|
@ -4704,6 +4705,24 @@ 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: ");
|
||||||
|
bool first=true;
|
||||||
|
foreach(k,v;cookies) {
|
||||||
|
if(first) first = false;
|
||||||
|
else append("; ");
|
||||||
|
append(k);
|
||||||
|
append("=");
|
||||||
|
append(v);
|
||||||
|
}
|
||||||
|
append("\r\n");
|
||||||
|
}
|
||||||
|
/*
|
||||||
|
//This is equivalent but has dependencies
|
||||||
|
import std.format;
|
||||||
|
import std.algorithm : map;
|
||||||
|
append(format("cookie: %-(%s %)\r\n",cookies.byKeyValue.map!(t=>format("%s=%s",t.key,t.value))));
|
||||||
|
*/
|
||||||
|
|
||||||
if(config.protocol.length)
|
if(config.protocol.length)
|
||||||
append("Sec-WebSocket-Protocol: ", config.protocol, "\r\n");
|
append("Sec-WebSocket-Protocol: ", config.protocol, "\r\n");
|
||||||
|
|
Loading…
Reference in New Issue