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: ClntOptServerUnicast.h,v 1.3 2004/10/25 20:45:53 thomson Exp $ 00010 * 00011 * $Log: ClntOptServerUnicast.h,v $ 00012 * Revision 1.3 2004/10/25 20:45:53 thomson 00013 * Option support, parsers rewritten. ClntIfaceMgr now handles options. 00014 * 00015 * Revision 1.2 2004/09/07 17:42:31 thomson 00016 * Server Unicast implemented. 00017 * 00018 */ 00019 00020 #ifndef CLNTOPTSERVERUNICAST_H 00021 #define CLNTOPTSERVERUNICAST_H 00022 00023 #include "OptAddr.h" 00024 #include "DHCPConst.h" 00025 00026 class TClntOptServerUnicast : public TOptAddr 00027 { 00028 public: 00029 TClntOptServerUnicast(char * buf, int n, TMsg* parent); 00030 bool doDuties(); 00031 }; 00032 00033 #endif /* CLNTOPTSERVERUNICAST_H */ 00034