// ndppd - NDP Proxy Daemon // Copyright (C) 2011 Daniel Adolfsson // // 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 . #pragma once #include #include #include #include #include "ndppd.h" NDPPD_NS_BEGIN class iface; class rule; class proxy { public: static ptr create(const ptr& ifa, bool promiscuous); static ptr open(const std::string& ifn, bool promiscuous); ptr find_or_create_session(const address& saddr, const address& daddr, const address& taddr, const ptr& receiver); void handle_advert(const address& saddr, const address& taddr, const ptr& receiver); void handle_solicit(const address& saddr, const address& daddr, const address& taddr); void remove_session(const ptr& se); ptr add_rule(const address& addr, const ptr& ifa); ptr add_rule(const address& addr, bool aut = false); const ptr& ifa() const; bool promiscuous() const; bool router() const; void router(bool val); bool autowire() const; void autowire(bool val); int timeout() const; void timeout(int val); int ttl() const; void ttl(int val); int deadtime() const; void deadtime(int val); private: static std::list > _list; weak_ptr _ptr; ptr _ifa; std::list > _rules; std::list > _sessions; bool _promiscuous; bool _router; bool _autowire; int _ttl, _deadtime, _timeout; proxy(); }; NDPPD_NS_END