/usr/include/sipxtapi/rtcp/IRTCPSession.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 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 | //
// 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 _IRTCPSession_h
#define _IRTCPSession_h
#include "rtcp/RtcpConfig.h"
// Includes
#include "IBaseClass.h"
#include "INetworkRender.h"
#include "IRTCPConnection.h"
// Forward Declaration
interface IGetSrcDescription;
interface IGetByeInfo;
// Enumerated Types
typedef enum {
MIXER_DISABLED = 0,
MIXER_ENABLED = 1
} MIXER_MODE_ET;
/**
*
* Interface Name: IRTCPSession
*
* Inheritance: None
*
*
* Description: The IRTCPSession interface shall allow a consumer to create
* and terminate RTCP Connections within an RTCP Session. An
* RTCP Connection shall monitor and report on the identity and
* performance of an RTP Connection within an RTCP Session.
*
* Notes:
*
*/
interface IRTCPSession : public IBaseClass
{
// Public Methods
public:
/**
*
* Method Name: CreateRTCPConnection
*
*
* Inputs: None
*
* Outputs: None
*
* Returns: IRTCPConnection *
* Returns an interface for use in controlling an RTCP Connection
*
* Description: The CreateRTCPConnection shall manage the instantiation of
* RTCP Connection object used to report and track the identity
* and performance of active RTP connection.
*
*
* Usage Notes: An RTCPConnection object shall be create per RTP Connection.
*
*
*/
virtual IRTCPConnection *CreateRTCPConnection(void)=0;
/**
*
* Method Name: TerminateRTCPConnection
*
*
* Inputs: IRTCPConnection *piRTCPConnection
* The Connection Interface pointer returned on creation
*
* Outputs: None
*
* Returns: bool
*
* Description: The TerminateRTCPConnection() method shall manage the
* termination of and RTCP session. This shall include the
* graceful release of all associated objects as well as the
* deallocation of all resources associated with each contained
* RTCP connection.
*
*
* Usage Notes:
*
*
*/
virtual bool TerminateRTCPConnection(IRTCPConnection *piRTCPConnection)=0;
/**
*
* Method Name: TerminateAllConnections
*
*
* Inputs: None
*
* Outputs: None
*
* Returns: bool
*
* Description: The TerminateAllConnections() method shall manage the
* termination of all RTCP connections. This shall include the
* transmission of a Bye report over each RTCP connection in
* addition to the graceful release of all associated objects and
* the deallocation of all resources associated with each
* contained RTCP connection.
*
*
* Usage Notes:
*
*
*/
virtual void TerminateAllConnections(void)=0;
/**
*
* Method Name: GetSessionID()
*
*
* Inputs: None
*
* Outputs: None
*
* Returns: unsigned long - The ID for this Sesson
*
* Description: Retrieves the Session ID associated with a session.
*
* Usage Notes:
*
*/
virtual unsigned long GetSessionID(void) = 0;
/**
*
* Method Name: ReassignSSRC
*
*
* Inputs: unsigned long ulSSRC - Source ID
* unsigned char *puchReason - Optional Reason for Reassignment
*
* Outputs: None
*
* Returns: void
*
* Description: Reassigns the Source Identifier associated with an RTP session
* due to collision detection and resolution. Calling of this
* method shall result in the resetting of the SSRC IDs of
* associated Sender, Receiver, and SDES Reports.
*
* Usage Notes:
*
*
*
*/
virtual void ReassignSSRC(unsigned long ulSSRC,
unsigned char *puchReason=NULL)=0;
/**
*
* Method Name: ForwardSDESReport
*
*
* Inputs: IGetSrcDescription *piGetSrcDescription
* Interface for getting SDES Report Statistics
* IRTCPConnection *piRTCPConnection
* Interface to RTCP Connection originating SDES
*
* Outputs: None
*
* Returns: None
*
* Description: The ForwardSDESReport() method shall enable the RTC Manager to
* pass interfaces to SDES Reports received from participating
* site while acting in the mode of a conference Mixer. The
* Mixer's role in this situation is to transmit these reports
* unchanged to others participating within a conference. The
* handoff of an SDES Report to the CRTCPRender will cause the
* report to be transmitted to a participating site using the
* associated Network Render object.
*
* Usage Notes: The interface for the local site's Source Description Report
* generator is passed as an argument at construction time.
*
*
*/
virtual void ForwardSDESReport(IGetSrcDescription *piGetSrcDescription,
IRTCPConnection *piRTCPConnection)=0;
/**
*
* Method Name: ForwardByeReport
*
*
* Inputs: IGetByeInfo *piGetByeInfo
* Interface used to retrieve Bye Report information
* IRTCPConnection *piRTCPConnection
* Interface to RTCP Connection originating Bye
*
* Outputs: None
*
* Returns: None
*
* Description: The ForwardByeReport() method shall enable the RTC Manager to
* pass interfaces to Bye Reports received from participating site
* while acting in the mode of a conference Mixer. The Mixer's
* role in this situation is to transmit these reports unchanged
* to others participating within a conference. The handoff of a
* Bye Report to the CRTCPRender will cause the report to be
* transmitted to a participating site using the associated
* Network Render object.
*
* Usage Notes:
*
*
*/
virtual void ForwardByeReport(IGetByeInfo *piGetByeInfo,
IRTCPConnection *piRTCPConnection)=0;
/**
*
* Method Name: CheckLocalSSRCCollisions
*
*
* Inputs: None
*
* Outputs: None
*
* Returns: void
*
* Description: Check that our local SSRC is not colliding with one fo the
* SSRCs of a participating site.
*
* Usage Notes:
*
*
*
*/
virtual void CheckLocalSSRCCollisions(void) = 0;
/**
*
* Method Name: CheckRemoteSSRCCollisions
*
*
* Inputs: IRTCPConnection *piRTCPConnection - Connection Interface
*
* Outputs: None
*
* Returns: void
*
* Description: Check that other remote SSRCs aren't colliding with each other.
*
* Usage Notes:
*
*
*
*/
virtual void
CheckRemoteSSRCCollisions(IRTCPConnection *piRTCPConnection) = 0;
/**
*
* Method Name: SetMixerMode()
*
*
* Inputs: MIXER_MODE_ET etMixerMode
* Identifies whether the audio mixer is enabled or disabled
*
* Outputs: None
*
* Returns: None
*
* Description: Sets the audio mixer mode for a session.
*
* Usage Notes:
*
*/
virtual void SetMixerMode(MIXER_MODE_ET etMixerMode)=0;
/**
*
* Method Name: GetMixerMode()
*
*
* Inputs: None
*
* Outputs: None
*
* Returns: MIXER_MODE_ET - The audio mixer mode supported by the session
*
* Description: Retrieves the audio mixer mode supported by the session.
*
* Usage Notes:
*
*/
virtual MIXER_MODE_ET GetMixerMode(void)=0;
/**
*
* Method Name: GetSSRC()
*
*
* Inputs: None
*
* Outputs: None
*
* Returns: unsigned long - Local SSRC associated with the session
*
* Description: Retrieves the SSRC associated with a session.
*
* Usage Notes:
*
*/
virtual ssrc_t GetSSRC(int, int, int)=0;
/**
*
* Method Name: CheckConnection
*
*
* Inputs: None
*
* Outputs: None
*
* Returns: IRTCPConnection *
* Returns an interface for use in controlling an RTCP Connection
*
*
* Description: The CheckConnection shall check an instance of an RTCP
* Connection interface on the RTCP Session's collection list.
*
*
* Usage Notes:
*
*
*/
virtual IRTCPConnection *CheckConnection(IRTCPConnection *)=0;
};
#endif
|