#pragma once

#include <boost/shared_ptr.hpp>
#include <boost/enable_shared_from_this.hpp>
#include <boost/asio.hpp>

#include "Swiften/Network/BoostConnection.h"
#include "Swiften/Network/ConnectionServer.h"
#include "Swiften/EventLoop/EventOwner.h"

namespace Swift {
	class BoostConnectionServer : public ConnectionServer, public EventOwner, public boost::enable_shared_from_this<BoostConnectionServer> {
		public:
			BoostConnectionServer(int port, boost::asio::io_service* ioService);

			void start();

		private:
			void acceptNextConnection();
			void handleAccept(boost::shared_ptr<BoostConnection> newConnection, const boost::system::error_code& error);

		private:
			boost::asio::ip::tcp::acceptor acceptor_;
	};
}