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: RelOptRelayMsg.h,v 1.1 2005/01/11 22:53:36 thomson Exp $ 00010 * 00011 * $Log: RelOptRelayMsg.h,v $ 00012 * Revision 1.1 2005/01/11 22:53:36 thomson 00013 * Relay skeleton implemented. 00014 * 00015 */ 00016 00017 #ifndef RELOPTRELAYMSG_H 00018 #define RELOPTRELAYMSG_H 00019 00020 #include "DHCPConst.h" 00021 #include "OptGeneric.h" 00022 00023 class TRelOptRelayMsg : public TOptGeneric 00024 { 00025 public: 00026 TRelOptRelayMsg(char* buf, int bufsize, TMsg* parent); 00027 bool doDuties(); 00028 }; 00029 00030 #endif /* RELOPTGENERIC_H */ 00031