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: SrvOptFQDN.h,v 1.1 2004/11/02 01:30:54 thomson Exp $ 00010 * 00011 * $Log: SrvOptFQDN.h,v $ 00012 * Revision 1.1 2004/11/02 01:30:54 thomson 00013 * Initial version. 00014 * 00015 */ 00016 00017 00018 #ifndef SRVOPTFQDN_H 00019 #define SRVOPTFQDN_H 00020 00021 #include "OptString.h" 00022 00023 class TSrvOptFQDN : public TOptString 00024 { 00025 public: 00026 TSrvOptFQDN(string fqdn, TMsg* parent); 00027 TSrvOptFQDN(char *buf, int bufsize, TMsg* parent); 00028 bool doDuties(); 00029 }; 00030 #endif 00031