Alex Bikfalvi
SimStream Documentation
PacketConnection.cpp
00001 #include "Headers.h" 00002 #include "PacketConnection.h" 00003 00004 CPacketConnection::CPacketConnection( 00005 __uint32 size, 00006 ETypeConnection typeConnection, 00007 __uint32 flow, 00008 __uint32 src, 00009 __uint32 dst, 00010 __uint32 srcEntry, 00011 __uint32 dstEntry, 00012 ETypeOfService tos, 00013 __time timeTx, 00014 __time timeRx, 00015 __time timeDelay 00016 ) : CPacket(size + 296, NULL, tos) 00017 { 00018 this->typeConnection = typeConnection; 00019 this->flow = flow; 00020 this->src = src; 00021 this->dst = dst; 00022 this->srcEntry = srcEntry; 00023 this->dstEntry = dstEntry; 00024 this->timeTx = timeTx; 00025 this->timeRx = timeRx; 00026 this->timeDelay = timeDelay; 00027 }
Last updated: February 8, 2011