/* * 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 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 General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program. If not, see . */ #ifndef MAD_NET_LISTENER_H_ #define MAD_NET_LISTENER_H_ #include #include #include "Connection.h" #include "Exception.h" namespace Mad { namespace Net { class Listener : boost::noncopyable { private: boost::mutex mutex; std::string x905CertFile, x905KeyFile; boost::asio::ip::tcp::endpoint address; boost::asio::ip::tcp::acceptor acceptor; boost::asio::ssl::context sslContext; std::map, std::pair > connections; boost::signal1 > signal; 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(const std::string &x905CertFile0, const std::string &x905KeyFile0, const boost::asio::ip::tcp::endpoint &address0 = boost::asio::ip::tcp::endpoint(boost::asio::ip::tcp::v4(), 6666)) throw(Exception); virtual ~Listener(); boost::signal1 >& signalNewConnection() {return signal;} }; } } #endif /*MAD_NET_LISTENER_H_*/