allow delegate as well as function for fiber

This commit is contained in:
Adam D. Ruppe 2021-02-15 13:45:59 -05:00
parent ce4c8a3875
commit 2322315708
1 changed files with 5 additions and 1 deletions

6
cgi.d
View File

@ -4036,13 +4036,17 @@ void handleCgiRequest(alias fun, CustomCgi = Cgi, long maxContentLength = defaul
version(cgi_use_fiber)
class CgiFiber : Fiber {
this(void function(Socket) handler) {
this(delegate void(Socket s) { handler(s); });
}
this(void delegate(Socket) handler) {
this.handler = handler;
// FIXME: stack size
super(&run);
}
Socket connection;
void function(Socket) handler;
void delegate(Socket) handler;
void run() {
handler(connection);