/usr/include/sipxtapi/rtcp/IRTCPHeader.h is in libsipxtapi-dev 3.3.0~test17-2.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 | //
// Copyright (C) 2006-2013 SIPez LLC. All rights reserved.
//
// Copyright (C) 2004-2006 SIPfoundry Inc.
// Licensed by SIPfoundry under the LGPL license.
//
// Copyright (C) 2004-2006 Pingtel Corp. All rights reserved.
// Licensed to SIPfoundry under a Contributor Agreement.
//
// $$
///////////////////////////////////////////////////////////////////////////////
// Border Guard
#ifndef _IRTCPHeader_h
#define _IRTCPHeader_h
#include "rtcp/RtcpConfig.h"
// Enumerations
typedef enum {
etInvalidReport,
etSenderReport = 200,
etReceiverReport,
etSDESReport,
etByeReport,
etAppReport
} RTCP_REPORTS_ET;
/**
*
* Interface Name: IRTCPHeader
*
* Inheritance: None
*
*
* Description: The IRTCPHeader interface allows a user to parse and form
* a RTCP Report headers according to the format defined in
* RFC 1889.It also provides a user with services to extract
* information from this header once it has been parsed or
* formed.
*
* Notes:
*
*/
interface IRTCPHeader
{
// Public Methods
public:
virtual ~IRTCPHeader() {}
/**
*
* Method Name: GetHeaderLength
*
*
* Inputs: None
*
* Outputs: None
*
* Returns: unsigned long - Return the size of the RTCP Header
*
* Description: Retrieves the size of the RTCP Header that preceeds the payload.
*
* Usage Notes:
*
*
*/
virtual unsigned long GetHeaderLength(void)=0;
/**
*
* Method Name: GetSSRC
*
*
* Inputs: None
*
* Outputs: Bobe
*
* Returns: unsigned long - Return the SSRC ID
*
* Description: Retrieves the SSRC attribute stored within the object.
*
* Usage Notes:
*
*
*/
virtual unsigned long GetSSRC(void)=0;
/**
*
* Method Name: GetVersion
*
*
* Inputs: None
*
* Outputs: None
*
* Returns: unsigned long - Protocol Version #
*
* Description: Returns the protocol version number associated with the RTCP
* packet.
*
* Usage Notes:
*
*
*/
virtual unsigned long GetVersion(void)=0;
/**
*
* Method Name: GetPadding
*
*
* Inputs: None
*
* Outputs: None
*
* Returns: unsigned long - Padding Flag
*
* Description: Returns the padding flag associated with the RTCP packet.
*
* Usage Notes:
*
*
*/
virtual unsigned long GetPadding(void)=0;
/**
*
* Method Name: GetReportCount
*
*
* Inputs: None
*
* Outputs: None
*
* Returns: unsigned long - Returns Report Count
*
* Description: Retrieves the report count associated with this RTCP report.
*
* Usage Notes:
*
*
*/
virtual unsigned long GetReportCount(void)=0;
/**
*
* Method Name: GetReportlength
*
*
* Inputs: None
*
* Outputs: None
*
* Returns: unsigned long - Returns Report Length
*
* Description: Retrieves the report length associated with this RTCP report.
*
* Usage Notes:
*
*
*/
virtual unsigned long GetReportLength(void)=0;
/**
*
* Method Name: GetPayload
*
*
* Inputs: None
*
* Outputs: None
*
* Returns: RTCP_REPORTS_ET - Returns Payload Type
*
* Description: Returns the payload type value associated with the RTCP packet.
*
* Usage Notes:
*
*
*/
virtual RTCP_REPORTS_ET GetPayload(void)=0;
/**
*
* Method Name: IsOurSSRC
*
*
* Inputs: None
*
* Outputs: ssrc_t ulSSRC - SSRC ID
*
* Returns: boolean
*
* Description: Compares the SSRC ID passed to that stored as an attribute
* within this object instance. Will return either True or
* False based on the match.
*
* Usage Notes:
*
*
*/
virtual bool IsOurSSRC(ssrc_t ulSSRC)=0;
/**
*
* Method Name: SetSSRC
*
*
* Inputs: unsigned long ulSSRC - Source ID
*
* Outputs: None
*
* Returns: void
*
* Description: Stores the Source Identifier associated with an RTP connection.
*
* Usage Notes:
*
*
*
*/
virtual void SetSSRC(unsigned long ulSSRC)=0;
};
#endif
|