more sane timeout with non hybrid websocket server

This commit is contained in:
Adam D. Ruppe 2021-02-03 12:00:49 -05:00
parent a8ec499f2b
commit 89d8878d31
1 changed files with 5 additions and 1 deletions

6
cgi.d
View File

@ -5331,6 +5331,9 @@ version(cgi_with_websocket) {
private this(Cgi cgi) {
this.cgi = cgi;
Socket socket = cgi.idlol.source;
socket.setOption(SocketOptionLevel.SOCKET, SocketOption.RCVTIMEO, dur!"minutes"(5));
}
// returns true if data available, false if it timed out
@ -5531,7 +5534,8 @@ version(cgi_with_websocket) {
return m;
} while(lowLevelReceive());
return WebSocketFrame.init; // FIXME? maybe.
throw new ConnectionClosedException("Websocket receive timed out");
//return WebSocketFrame.init; // FIXME? maybe.
}
/++