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
|
/*
* Dibbler - a portable DHCPv6
*
* authors: Tomasz Mrugalski <thomson@klub.com.pl>
* Marek Senderski <msend@o2.pl>
*
* released under GNU GPL v2 licence
*
* $Id: OptElapsed.cpp,v 1.5 2005-07-21 20:29:09 thomson Exp $
*/
#include <stdlib.h>
#ifdef LINUX
#include <netinet/in.h>
#endif
#include <time.h>
#include "DHCPConst.h"
#include "Portable.h"
#include "OptElapsed.h"
TOptElapsed::TOptElapsed( char * &buf, int &bufSize, TMsg* parent)
:TOpt(OPTION_ELAPSED_TIME, parent)
{
this->Timestamp=ntohs(*((short*)buf));
buf-=2; bufSize-=2;
}
TOptElapsed::TOptElapsed(TMsg* parent)
:TOpt(OPTION_ELAPSED_TIME, parent)
{
Timestamp = now();
}
int TOptElapsed::getSize()
{
return 6;
}
char * TOptElapsed::storeSelf( char* buf)
{
*(uint16_t*)buf = htons(OptType);
buf+=2;
*(uint16_t*)buf = htons( getSize()-4 );
buf+=2;
int diff = now() - this->Timestamp;
if (diff > 0xffff)
diff = 0xffff;
*(uint16_t*)buf = htons( short(diff) );
buf+=2;
return buf;
}
/*
* $Log: OptElapsed.cpp,v $
* Revision 1.5 2005-07-21 20:29:09 thomson
* Merged changes for win2k port.
*
* Revision 1.4 2005/01/31 18:46:53 thomson
* Win32 project fixes.
*
* Revision 1.3 2004/09/28 20:08:37 thomson
* Minor changes.
*
* Revision 1.2 2004/03/29 18:53:08 thomson
* Author/Licence/cvs log/cvs version headers added.
*/
|