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 or later licence 00008 * 00009 * $Id: SrvOptElapsed.h,v 1.2 2004/10/25 20:45:54 thomson Exp $ 00010 * 00011 * $Log: SrvOptElapsed.h,v $ 00012 * Revision 1.2 2004/10/25 20:45:54 thomson 00013 * Option support, parsers rewritten. ClntIfaceMgr now handles options. 00014 * 00015 */ 00016 00017 #ifndef SRVOPTELAPSED_H 00018 #define SRVOPTELAPSED_H 00019 00020 #include "OptElapsed.h" 00021 00022 class TSrvOptElapsed : public TOptElapsed 00023 { 00024 public: 00025 TSrvOptElapsed(TMsg* parent); 00026 TSrvOptElapsed( char * buf, int n, TMsg* parent); 00027 bool doDuties(); 00028 }; 00029 00030 #endif /* SRVOPTELAPSED_H */ 00031