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: RelOptGeneric.h,v 1.3 2005/01/13 22:45:55 thomson Exp $ 00010 * 00011 * $Log: RelOptGeneric.h,v $ 00012 * Revision 1.3 2005/01/13 22:45:55 thomson 00013 * Relays implemented. 00014 * 00015 * Revision 1.2 2005/01/11 23:35:22 thomson 00016 * *** empty log message *** 00017 * 00018 * Revision 1.1 2005/01/11 22:53:35 thomson 00019 * Relay skeleton implemented. 00020 * 00021 */ 00022 00023 #ifndef RELOPTGENERIC_H 00024 #define RELOPTGENERIC_H 00025 00026 #include "DHCPConst.h" 00027 #include "OptGeneric.h" 00028 00029 class TRelOptGeneric : public TOptGeneric 00030 { 00031 public: 00032 TRelOptGeneric(int type, char* buf, int bufsize, TMsg* parent); 00033 bool doDuties(); 00034 00035 }; 00036 00037 #endif /* RELOPTGENERIC_H */ 00038