1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
/*
* Dibbler - a portable DHCPv6
*
* authors: Tomasz Mrugalski <thomson@klub.com.pl>
* Marek Senderski <msend@o2.pl>
*
* released under GNU GPL v2 only licence
*
*/
class TRelTransMgr;
#ifndef RELTRANSMGR_H
#define RELTRANSMGR_H
#include <iostream>
#include "SmartPtr.h"
#include "RelCfgIface.h"
#include "RelMsg.h"
#define RelTransMgr() (TRelTransMgr::instance())
class TRelTransMgr
{
friend std::ostream & operator<<(std::ostream &strum, TRelTransMgr &x);
public:
static void instanceCreate(const std::string& xmlFile);
static TRelTransMgr& instance();
~TRelTransMgr();
bool openSocket(SPtr<TRelCfgIface> confIface);
bool doDuties();
void relayMsg(SPtr<TRelMsg> msg);
void relayMsgRepl(SPtr<TRelMsg> msg);
void dump();
bool isDone();
void shutdown();
char * getCtrlAddr();
int getCtrlIface();
protected:
TRelTransMgr(const std::string& xmlFile);
static TRelTransMgr * Instance;
SPtr<TOpt> getClientLinkLayerAddr(SPtr<TRelMsg> msg);
SPtr<TOpt> getLinkAddrFromSrcAddr(SPtr<TRelMsg> msg);
SPtr<TOpt> getLinkAddrFromDuid(SPtr<TOpt> duid_opt);
private:
std::string XmlFile;
bool IsDone;
int ctrlIface;
char ctrlAddr[48];
};
#endif
|