summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/server/ServerTLS.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/server/ServerTLS.h b/lib/server/ServerTLS.h
index 1bfcb547..a74a671e 100644
--- a/lib/server/ServerTLS.h
+++ b/lib/server/ServerTLS.h
@@ -55,7 +55,8 @@ public:
mContext.Initialise(true /* as server */, certFile.c_str(), keyFile.c_str(), caFile.c_str());
// Then do normal stream server stuff
- ServerStream<SocketStreamTLS, Port, ListenBacklog>::Run2(rChildExit);
+ ServerStream<SocketStreamTLS, Port, ListenBacklog,
+ ForkToHandleRequests>::Run2(rChildExit);
}
virtual void HandleConnection(SocketStreamTLS &rStream)