##// END OF EJS Templates
Minor update in project gse_lesia
Minor update in project gse_lesia

File last commit:

r69:d8815b251eb0 default
r72:27e89cd58c8b default
Show More
tcpackettosend.cpp
22 lines | 649 B | text/x-c | CppLexer
#include "tcpackettosend.h"
TCPacketToSend::TCPacketToSend(char *Value, unsigned int count,
char targetLogicalAddress, char userApplication, unsigned int delay,
QObject *parent) :
QObject(parent)
{
this->Value = (char*) malloc(count);
for(unsigned int i=0; i<count;i++)
{
this->Value[i] = Value[i]; // local copy of the data pointed by Value
}
this->count = count;
this->targetLogicalAddress = targetLogicalAddress;
this->userApplication = userApplication;
this->delay = delay;
}
TCPacketToSend::~TCPacketToSend()
{
free(this->Value);
}