summaryrefslogtreecommitdiff
path: root/orkaudio/audiocaptureplugins/voip/Rtp.h
blob: 242c21abd00b5b5db577c1cabc300950ba8e4916 (plain)
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
/*
 * Oreka -- A media capture and retrieval platform
 * 
 * Copyright (C) 2005, orecx LLC
 *
 * http://www.orecx.com
 *
 * This program is free software, distributed under the terms of
 * the GNU General Public License.
 * Please refer to http://www.gnu.org/copyleft/gpl.html
 *
 */

#ifndef __RTP_H__
#define __RTP_H__

#include "ace/OS_NS_arpa_inet.h"
#include "boost/shared_ptr.hpp"
#include "StdString.h"


// useful info we extract from an RTP packet
class RtpPacketInfo
{
public:
	void ToString(CStdString& string);

	//CStdString m_sourceMac;
	//CStdString m_destMac;
	struct in_addr m_sourceIp;
	struct in_addr m_destIp;
	unsigned short m_sourcePort;
	unsigned short m_destPort;
	unsigned int m_payloadSize;
	unsigned short m_payloadType;
	unsigned char* m_payload;
	unsigned short m_seqNum;
	unsigned int m_timestamp;
	time_t m_arrivalTimestamp;
};
typedef boost::shared_ptr<RtpPacketInfo> RtpPacketInfoRef;


#endif