1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
|
/*
* Dibbler - a portable DHCPv6
*
* authors: Tomasz Mrugalski <thomson@klub.com.pl>
* Marek Senderski <msend@o2.pl>
*
* released under GNU GPL v2 licence
*
* $Id: OptIAAddress.cpp,v 1.7 2007-08-26 10:26:19 thomson Exp $
*
*/
#include <string.h>
#include "Portable.h"
#include "DHCPConst.h"
#include "Opt.h"
#include "OptIAAddress.h"
TOptIAAddress::TOptIAAddress( char * &buf, int &n, TMsg* parent)
:TOpt(OPTION_IAADDR, parent)
{
this->ValidOpt=false;
if (n>=24)
{
Addr=new TIPv6Addr(buf);
buf+= 16; n-=16;
this->Pref = ntohl(*((long*)buf));
buf+= 4; n-=4;
this->Valid = ntohl(*((long*)buf));
buf+= 4; n-=4;
this->ValidOpt=true;
}
}
TOptIAAddress::TOptIAAddress(SmartPtr<TIPv6Addr> addr, unsigned long pref,
unsigned long valid, TMsg* parent)
:TOpt(OPTION_IAADDR, parent) {
if(addr)
Addr=addr;
else
Addr=new TIPv6Addr();
this->Pref = pref;
this->Valid = valid;
}
int TOptIAAddress::getSize() {
int mySize = 28;
return mySize+getSubOptSize();
}
void TOptIAAddress::setPref(unsigned long pref) {
this->Pref = pref;
}
void TOptIAAddress::setValid(unsigned long valid) {
this->Valid = valid;
}
char * TOptIAAddress::storeSelf( char* buf)
{
*(uint16_t*)buf = htons(OptType);
buf+=2;
*(uint16_t*)buf = htons( getSize()-4 );
buf+=2;
memcpy(buf,Addr->getAddr(),16);
buf+=16;
*(uint32_t*)buf = htonl(Pref);
buf+=4;
*(uint32_t*)buf = htonl(Valid);
buf+=4;
buf=storeSubOpt(buf);
return buf;
}
SmartPtr<TIPv6Addr> TOptIAAddress::getAddr()
{
return this->Addr;
}
unsigned long TOptIAAddress::getPref()
{
return this->Pref;
}
unsigned long TOptIAAddress::getValid()
{
return this->Valid;
}
bool TOptIAAddress::isValid()
{
return this->ValidOpt;
}
|