Created UserInterface namespace, WebServerService -> UserInterfaceService.

This commit is contained in:
emeric
2014-04-12 21:28:20 +02:00
parent 788a7638bc
commit 298f6fb885
46 changed files with 291 additions and 167 deletions
+3 -4
View File
@@ -6,14 +6,14 @@
#include "Server.hpp"
namespace Remote {
namespace Server {
Server::Server(const endpoint_type& endpoint)
Server::Server(const endpoint_type& endpoint, boost::filesystem::path dbPath)
:
_acceptor(_ioService),
_connectionManager(),
_socket(_ioService)
_socket(_ioService),
_requestHandler(dbPath)
{
// Open the acceptor with the option to reuse the address (i.e. SO_REUSEADDR).
boost::asio::ip::tcp::resolver resolver(_ioService);
@@ -72,5 +72,4 @@ Server::stop()
}
} // namespace Server
} // namespace Remote