From 9985958899d1fc24689a24758e0cce99adcb7678 Mon Sep 17 00:00:00 2001 From: Christian Pointner Date: Tue, 3 Mar 2009 17:20:08 +0000 Subject: initial checkin of new resolver --- src/resolver.h | 90 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 90 insertions(+) create mode 100644 src/resolver.h (limited to 'src/resolver.h') diff --git a/src/resolver.h b/src/resolver.h new file mode 100644 index 0000000..7f1336f --- /dev/null +++ b/src/resolver.h @@ -0,0 +1,90 @@ +/* + * anytun + * + * The secure anycast tunneling protocol (satp) defines a protocol used + * for communication between any combination of unicast and anycast + * tunnel endpoints. It has less protocol overhead than IPSec in Tunnel + * mode and allows tunneling of every ETHER TYPE protocol (e.g. + * ethernet, ip, arp ...). satp directly includes cryptography and + * message authentication based on the methodes used by SRTP. It is + * intended to deliver a generic, scaleable and secure solution for + * tunneling and relaying of packets of any protocol. + * + * + * Copyright (C) 2007-2008 Othmar Gsenger, Erwin Nindl, + * Christian Pointner + * + * This file is part of Anytun. + * + * Anytun is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 3 as + * published by the Free Software Foundation. + * + * Anytun 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 anytun. If not, see . + */ + +#ifndef _RESOLVER_H_ +#define _RESOLVER_H_ + +#include +#include + +#include "threadUtils.hpp" + +template +class ResolveHandler +{ +public: + ResolveHandler(const std::string& addr, const std::string& port); + void operator()(const boost::system::error_code& e, const boost::asio::ip::basic_resolver_iterator); + +private: + std::string addr_; + std::string port_; +}; + +typedef ResolveHandler UdpResolveHandler; +typedef ResolveHandler TcpResolveHandler; + +class Resolver +{ +public: + static Resolver& instance(); + + void init(); + static void run(void* s); + + void resolveUdp(const std::string& addr, const std::string& port); + void resolveTcp(const std::string& addr, const std::string& port); + +private: + Resolver(); + ~Resolver(); + Resolver(const Resolver &r); + void operator=(const Resolver &r); + + static Resolver* inst; + static ::Mutex instMutex; + class instanceCleaner { + public: ~instanceCleaner() { + if(Resolver::inst != 0) + delete Resolver::inst; + } + }; + friend class instanceCleaner; + + boost::asio::io_service io_service_; + boost::asio::ip::udp::resolver udp_resolver_; + boost::asio::ip::tcp::resolver tcp_resolver_; + boost::thread* thread_; +}; + +extern Resolver& gResolver; + +#endif -- cgit v1.2.3