From 85a447af31c3597c38e46c0700e4ba993a8d10a9 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Fri, 4 Dec 2015 17:22:12 -0500 Subject: [PATCH] osx fix --- cgi.d | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/cgi.d b/cgi.d index e2d7988..2443672 100644 --- a/cgi.d +++ b/cgi.d @@ -147,7 +147,7 @@ module arsd.cgi; version(embedded_httpd) { - version(Posix) + version(linux) version=embedded_httpd_processes; else version=embedded_httpd_threads; @@ -3765,6 +3765,8 @@ version(cgi_with_websocket) { cgi.websocketMode = true; cgi.write(""); + cgi.flush(); + return new WebSocket(cgi); } @@ -3878,6 +3880,7 @@ version(cgi_with_websocket) { //writeln("SENDING ", headerScratch[0 .. headerScratchPos], data); cgi.write(headerScratch[0 .. headerScratchPos]); cgi.write(data); + cgi.flush(); } static WebSocketMessage read(ubyte[] d) {