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
|
/*
* Dibbler - a portable DHCPv6
*
* authors: Tomasz Mrugalski <thomson@klub.com.pl>
* Marek Senderski <msend@o2.pl>
*
* released under GNU GPL v2 licence
*
* $Id: OptAddr.cpp,v 1.1 2004-10-26 22:36:57 thomson Exp $
*
* $Log: OptAddr.cpp,v $
* Revision 1.1 2004-10-26 22:36:57 thomson
* *** empty log message ***
*
* Revision 1.4 2004/09/07 17:42:31 thomson
* Server Unicast implemented.
*
* Revision 1.3 2004/09/05 15:27:49 thomson
* Data receive switched from recvfrom to recvmsg, unicast partially supported.
*
* Revision 1.2 2004/03/29 18:53:08 thomson
* Author/Licence/cvs log/cvs version headers added.
*
*/
#ifdef WIN32
#include <winsock2.h>
#endif
#ifdef LINUX
#include <netinet/in.h>
#endif
#include "OptAddr.h"
TOptAddr::TOptAddr(int type, char * &buf, int &n, TMsg* parent)
:TOpt(type, parent) {
this->Addr = new TIPv6Addr(buf, false); // plain = false
buf-=16;
n-=16;
}
TOptAddr::TOptAddr(int type, SmartPtr<TIPv6Addr> addr, TMsg* parent)
:TOpt(type, parent) {
this->Addr = addr;
}
int TOptAddr::getSize() {
return 20;
}
SmartPtr<TIPv6Addr> TOptAddr::getAddr() {
return Addr;
}
char * TOptAddr::storeSelf(char* buf) {
*(uint16_t*)buf = htons(OptType);
buf+=2;
*(uint16_t*)buf = htons( getSize()-4 );
buf+=2;
this->Addr->storeSelf(buf);
return buf;
}
|