[Box Backup-commit] COMMIT r2255 - box/trunk/lib/server

boxbackup-dev at fluffy.co.uk boxbackup-dev at fluffy.co.uk
Thu Aug 21 12:06:23 BST 2008


Author: chris
Date: 2008-08-21 12:06:23 +0100 (Thu, 21 Aug 2008)
New Revision: 2255

Modified:
   box/trunk/lib/server/ServerTLS.h
Log:
Use ForkToHandleRequests in ServerStream template call to avoid compiler 
errors.


Modified: box/trunk/lib/server/ServerTLS.h
===================================================================
--- box/trunk/lib/server/ServerTLS.h	2008-08-21 11:05:38 UTC (rev 2254)
+++ box/trunk/lib/server/ServerTLS.h	2008-08-21 11:06:23 UTC (rev 2255)
@@ -55,7 +55,8 @@
 		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)




More information about the Boxbackup-commit mailing list