summaryrefslogtreecommitdiff
path: root/lib/server
diff options
context:
space:
mode:
authorChris Wilson <chris+github@qwirx.com>2008-08-21 11:06:23 +0000
committerChris Wilson <chris+github@qwirx.com>2008-08-21 11:06:23 +0000
commit08246988b6151f949145b851acda799816cb8586 (patch)
tree2364f9c1db43eff633598936f81b0b060494e8b5 /lib/server
parent67279841cd455a04470515dd9e4db0cd7af46651 (diff)
Use ForkToHandleRequests in ServerStream template call to avoid compiler
errors.
Diffstat (limited to 'lib/server')
-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)