/* * Listener.h * * Copyright (C) 2008 Matthias Schiffer * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by the * Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License along * with this program. If not, see . */ #ifndef MAD_NET_LISTENER_H_ #define MAD_NET_LISTENER_H_ #include "export.h" #include #include "Connection.h" #include namespace Mad { namespace Net { class MAD_NET_EXPORT Listener : private boost::noncopyable { private: Core::Application *application; boost::mutex mutex; Core::String x905CertFile, x905KeyFile; boost::asio::ip::tcp::endpoint address; boost::shared_ptr context; boost::asio::ip::tcp::acceptor acceptor; std::map, std::pair > connections; Core::Signals::Signal1 > signal; void accept(); void handleAccept(const boost::system::error_code &error, boost::shared_ptr con); void handleConnect(boost::shared_ptr con); void handleDisconnect(boost::shared_ptr con); public: Listener(Core::Application *application0, const Core::String &x905CertFile0, const Core::String &x905KeyFile0, const boost::asio::ip::tcp::endpoint &address0) throw(Core::Exception); virtual ~Listener(); Core::Signals::Connection connectSignalNewConnection(const Core::Signals::Signal1 >::slot_type &slot) { return signal.connect(slot); } void disconnectSignalNewConnection(const Core::Signals::Connection &connection) { signal.disconnect(connection); } }; } } #endif /*MAD_NET_LISTENER_H_*/