WIP. Add config parameters for Remote service

This commit is contained in:
emeric
2014-08-22 22:57:19 +02:00
parent 8f8beb6237
commit 804b88ac50
8 changed files with 32 additions and 14 deletions
+5 -1
View File
@@ -26,7 +26,11 @@ class Server
typedef boost::asio::ip::tcp::endpoint endpoint_type;
// Serve up data from the given database
Server(const endpoint_type& bindEndpoint, boost::filesystem::path dbPath);
Server(const endpoint_type& bindEndpoint,
boost::filesystem::path certPath,
boost::filesystem::path privKeyPath,
boost::filesystem::path dhPath,
boost::filesystem::path dbPath);
// Run the server's io_service loop.
void start();