diff options
author | HanzZ <hanzz.k@gmail.com> | 2011-06-18 16:24:09 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2011-06-18 16:24:09 (GMT) |
commit | 7147be63a03f1e133f83bc057be98cf9f2631733 (patch) | |
tree | 07dd828712aac9f783a8f3b7190213dfbd33614f /Swiften/Network/BoostConnectionServer.cpp | |
parent | e45f1cc4ef85ea32b8307f25d22737906a87672c (diff) | |
download | swift-contrib-7147be63a03f1e133f83bc057be98cf9f2631733.zip swift-contrib-7147be63a03f1e133f83bc057be98cf9f2631733.tar.bz2 |
Added ConnectionServerFactory.
License: This patch is BSD-licensed, see http://www.opensource.org/licenses/bsd-license.php
Diffstat (limited to 'Swiften/Network/BoostConnectionServer.cpp')
-rw-r--r-- | Swiften/Network/BoostConnectionServer.cpp | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/Swiften/Network/BoostConnectionServer.cpp b/Swiften/Network/BoostConnectionServer.cpp index 4c6403c..27a1008 100644 --- a/Swiften/Network/BoostConnectionServer.cpp +++ b/Swiften/Network/BoostConnectionServer.cpp @@ -10,25 +10,34 @@ #include <boost/system/system_error.hpp> #include "Swiften/EventLoop/EventLoop.h" namespace Swift { BoostConnectionServer::BoostConnectionServer(int port, boost::shared_ptr<boost::asio::io_service> ioService, EventLoop* eventLoop) : port_(port), ioService_(ioService), eventLoop(eventLoop), acceptor_(NULL) { } +BoostConnectionServer::BoostConnectionServer(const HostAddress &address, int port, boost::shared_ptr<boost::asio::io_service> ioService, EventLoop* eventLoop) : address_(address), port_(port), ioService_(ioService), eventLoop(eventLoop), acceptor_(NULL) { +} void BoostConnectionServer::start() { try { assert(!acceptor_); - acceptor_ = new boost::asio::ip::tcp::acceptor( + if (address_.isValid()) { + acceptor_ = new boost::asio::ip::tcp::acceptor( + *ioService_, + boost::asio::ip::tcp::endpoint(address_.getRawAddress(), port_)); + } + else { + acceptor_ = new boost::asio::ip::tcp::acceptor( *ioService_, boost::asio::ip::tcp::endpoint(boost::asio::ip::tcp::v4(), port_)); + } acceptNextConnection(); } catch (const boost::system::system_error& e) { if (e.code() == boost::asio::error::address_in_use) { eventLoop->postEvent(boost::bind(boost::ref(onStopped), Conflict), shared_from_this()); } else { eventLoop->postEvent(boost::bind(boost::ref(onStopped), UnknownError), shared_from_this()); } |