ndppd/src/proxy.h

108 lines
2.3 KiB
C
Raw Normal View History

2011-09-13 21:26:12 +02:00
// ndppd - NDP Proxy Daemon
2012-01-26 11:21:07 +01:00
// Copyright (C) 2011 Daniel Adolfsson <daniel@priv.nu>
2011-09-13 21:26:12 +02:00
//
// 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 <http://www.gnu.org/licenses/>.
#pragma once
2011-09-13 21:26:12 +02:00
#include <string>
#include <vector>
#include <map>
#include <sys/poll.h>
#include "ndppd.h"
NDPPD_NS_BEGIN
2011-09-13 21:26:12 +02:00
class iface;
class rule;
class proxy {
2011-09-13 21:26:12 +02:00
public:
static ptr<proxy> create(const ptr<iface>& ifa, bool promiscuous);
2011-09-13 21:26:12 +02:00
static ptr<proxy> open(const std::string& ifn, bool promiscuous);
ptr<session> find_or_create_session(const address& saddr, const address& daddr, const address& taddr, const ptr<iface>& receiver);
void handle_advert(const address& saddr, const address& taddr, const ptr<iface>& receiver);
2011-09-13 21:26:12 +02:00
void handle_solicit(const address& saddr, const address& daddr, const address& taddr);
2011-09-13 21:26:12 +02:00
void remove_session(const ptr<session>& se);
2011-09-14 10:53:21 +02:00
ptr<rule> add_rule(const address& addr, const ptr<iface>& ifa);
2011-09-13 21:26:12 +02:00
ptr<rule> add_rule(const address& addr, bool aut = false);
2011-09-13 21:26:12 +02:00
const ptr<iface>& ifa() const;
bool promiscuous() const;
bool router() const;
void router(bool val);
bool autowire() const;
void autowire(bool val);
int retries() const;
void retries(int val);
bool keepalive() const;
void keepalive(bool val);
int timeout() const;
void timeout(int val);
int ttl() const;
void ttl(int val);
int deadtime() const;
void deadtime(int val);
2012-02-03 22:25:00 +01:00
private:
static std::list<ptr<proxy> > _list;
weak_ptr<proxy> _ptr;
ptr<iface> _ifa;
std::list<ptr<rule> > _rules;
std::list<ptr<session> > _sessions;
bool _promiscuous;
2012-02-03 22:25:00 +01:00
bool _router;
bool _autowire;
int _retries;
bool _keepalive;
2012-02-03 22:25:00 +01:00
int _ttl, _deadtime, _timeout;
2012-02-03 22:25:00 +01:00
proxy();
2011-09-13 21:26:12 +02:00
};
NDPPD_NS_END