Alex Bikfalvi
SimStream Documentation
StreamMessagePullSegmentResponse.cpp
00001 #include "Headers.h" 00002 #include "StreamMessagePullSegmentResponse.h" 00003 00004 CStreamMessagePullSegmentResponse::CStreamMessagePullSegmentResponse( 00005 __uint32 stream, 00006 __uint32 srcId, 00007 __uint32 srcIdEntry, 00008 __uint32 dstId, 00009 __uint32 dstIdEntry, 00010 __uint32 first, 00011 __uint8 count, 00012 __uint64 success, 00013 __uint64 fail 00014 ) : CStreamMessage(STREAM_MESSAGE_PULL_SEGMENT_RESPONSE, 296, stream) 00015 { 00016 this->srcId = srcId; 00017 this->srcIdEntry = srcIdEntry; 00018 this->dstId = dstId; 00019 this->dstIdEntry = dstIdEntry; 00020 00021 this->first = first; 00022 this->count = count; 00023 this->success = success; 00024 this->fail = fail; 00025 } 00026 00027 CPacket* CStreamMessagePullSegmentResponse::Copy() 00028 { 00029 return new CStreamMessagePullSegmentResponse( 00030 this->stream, 00031 this->srcId, 00032 this->srcIdEntry, 00033 this->dstId, 00034 this->dstIdEntry, 00035 this->first, 00036 this->count, 00037 this->success, 00038 this->fail 00039 ); 00040 }
Last updated: February 8, 2011