my code bad don't use it

This commit is contained in:
Adam D. Ruppe 2022-07-04 14:31:11 -04:00
parent 047f937bb9
commit 7660d2429a
1 changed files with 1 additions and 2 deletions

View File

@ -4014,7 +4014,6 @@ private bool bicmp(in ubyte[] item, in char[] search) {
class WebSocket {
private Uri uri;
private string[string] cookies;
private string origin;
private string host;
private ushort port;
@ -4101,7 +4100,7 @@ class WebSocket {
if(config.protocol.length)
append("Sec-WebSocket-Protocol: ", config.protocol, "\r\n");
if(config.origin.length)
append("Origin: ", origin, "\r\n");
append("Origin: ", config.origin, "\r\n");
foreach(h; config.additionalHeaders) {
append(h);