00001 /* 00002 * Dibbler - a portable DHCPv6 00003 * 00004 * authors: Tomasz Mrugalski <thomson@klub.com.pl> 00005 * Marek Senderski <msend@o2.pl> 00006 * 00007 * Released under GNU GPL v2 licence 00008 * 00009 * $Id: RelCommon.h,v 1.1 2005/01/11 22:53:35 thomson Exp $ 00010 * 00011 * $Log: RelCommon.h,v $ 00012 * Revision 1.1 2005/01/11 22:53:35 thomson 00013 * Relay skeleton implemented. 00014 * 00015 */ 00016 00017 class TRelIfaceMgr; 00018 class TRelCfgMgr; 00019 class TRelTransMgr; 00020 #ifndef RELCOMMON_H 00021 #define RELCOMMON_H 00022 00023 //#include "RelIfaceMgr.h" 00024 //#include "RelCfgMgr.h" 00025 //#include "RelTransMgr.h" 00026 00027 struct Ctx_s { 00028 TRelIfaceMgr * IfaceMgr; 00029 TRelCfgMgr * CfgMgr; 00030 TRelTransMgr * TransMgr; 00031 }; 00032 typedef struct Ctx_s TCtx; 00033 00034 #endif 00035