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
|
/*
* Dibbler - a portable DHCPv6
*
* authors: Tomasz Mrugalski <thomson@klub.com.pl>
* Marek Senderski <msend@o2.pl>
*
* released under GNU GPL v2 licence
*
* $Id: OptGeneric.cpp,v 1.4 2008-11-11 22:41:48 thomson Exp $
*
*/
#include <stdlib.h>
#include <string.h>
#include <sstream>
#include "Portable.h"
#include "DHCPConst.h"
#include "OptGeneric.h"
TOptGeneric::TOptGeneric(int optType, char* data, int dataLen, TMsg* parent)
:TOpt(optType, parent) {
this->Data = new char[dataLen];
memcpy(this->Data, data, dataLen);
this->DataLen = dataLen;
}
TOptGeneric::TOptGeneric(int optType, TMsg * parent)
:TOpt(optType, parent) {
this->Data = 0;
this->DataLen = 0;
}
TOptGeneric::~TOptGeneric() {
if (this->DataLen) {
delete [] this->Data;
}
}
int TOptGeneric::getSize()
{
return this->DataLen+4;
}
char * TOptGeneric::storeSelf( char* buf)
{
*(uint16_t*)buf = htons(OptType);
buf+=2;
*(uint16_t*)buf = htons(this->DataLen);
buf+=2;
memmove(buf, this->Data, this->DataLen);
return buf+this->DataLen;
}
std::string TOptGeneric::getPlain()
{
stringstream plain;
stringstream hex;
bool printable = true;
for (int i=0;i<DataLen; ++i)
{
if (!isalpha(Data[i]) && Data[i]!=32/* spc */) {
printable = false;
}
plain << Data[i];
hex << std::hex << setfill('0') << setw(2) << (unsigned int) Data[i];
if ((i<DataLen-1))
hex << ":";
}
if (printable)
return plain.str();
else
return hex.str();
}
bool TOptGeneric::isValid()
{
return true;
}
|