/* * * @APPLE_LICENSE_HEADER_START@ * * Copyright (c) 1999-2001 Apple Computer, Inc. All Rights Reserved. The * contents of this file constitute Original Code as defined in and are * subject to the Apple Public Source License Version 1.2 (the 'License'). * You may not use this file except in compliance with the License. Please * obtain a copy of the License at http://www.apple.com/publicsource and * read it before using this file. * * This Original Code and all software distributed under the License are * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. Please * see the License for the specific language governing rights and * limitations under the License. * * * @APPLE_LICENSE_HEADER_END@ * */ /* File: RTCPAckPacket.cpp Contains: RTCPAckPacket de-packetizing class */ #include "RTCPAckPacket.h" #include "RTCPPacket.h" #include "MyAssert.h" #include "OS.h" #include #include "OSMemory.h" #include "OSArrayObjectDeleter.h" Bool16 RTCPAckPacket::ParseAckPacket(UInt8* inPacketBuffer, UInt32 inPacketLen) { fRTCPAckBuffer = inPacketBuffer; // // Check whether this is an ack packet or not. if ((inPacketLen < kAckMaskOffset) || (!this->IsAckPacketType())) return false; Assert(inPacketLen == (UInt32)((this->GetPacketLength() * 4)) + RTCPPacket::kRTCPHeaderSizeInBytes); fAckMaskSize = inPacketLen - kAckMaskOffset; return true; } Bool16 RTCPAckPacket::IsAckPacketType() { // While we are moving to a new type, check for both UInt32 theAppType = ntohl(*(UInt32*)&fRTCPAckBuffer[kAppPacketTypeOffset]); return this->IsAckType(theAppType); } void RTCPAckPacket::Dump() { UInt16 theSeqNum = this->GetAckSeqNum(); UInt16 thePacketLen = this->GetPacketLength(); UInt32 theAckMaskSizeInBits = this->GetAckMaskSizeInBits(); char name[5]; name[4] = 0; ::memcpy(name, &fRTCPAckBuffer[kAppPacketTypeOffset],4); UInt16 numBufferBytes = (7 * theAckMaskSizeInBits) + 1; char *maskBytesBuffer = NEW char[numBufferBytes]; OSCharArrayDeleter deleter(maskBytesBuffer); maskBytesBuffer[0] = 0; maskBytesBuffer[numBufferBytes -1] = 0; for (UInt32 maskCount = 0; maskCount < theAckMaskSizeInBits; maskCount++) { if (this->IsNthBitEnabled(maskCount)) { sprintf(&maskBytesBuffer[::strlen(maskBytesBuffer)],"%u, ", theSeqNum + 1 + maskCount); } } Assert(::strlen(maskBytesBuffer) < numBufferBytes); printf(" H_name=%s H_seq=%u H_len=%u mask_size=%lu seq_nums_bit_set=%s\n", name, theSeqNum,thePacketLen,theAckMaskSizeInBits, maskBytesBuffer); }