diff options
Diffstat (limited to 'main.cpp')
-rw-r--r-- | main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -15,7 +15,7 @@ int main(int argc, char **argv) { encoder::init(); boost::asio::io_service io_service; - HTTPServer httpd(io_service); + HTTPServer httpd(io_service, tcp::endpoint(tcp::v6(), 8000)); std::vector<boost::shared_ptr<boost::thread> > threads; for(std::size_t i = 0; i < 10; i++) { boost::shared_ptr<boost::thread> thread(new boost::thread(boost::bind(&boost::asio::io_service::run, &io_service))); |