/usr/include/sipxtapi/rtcp/IGetReceiverStatistics.h is in libsipxtapi-dev 3.3.0~test17-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 | //
// 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 _IGetReceiverStatistics_h
#define _IGetReceiverStatistics_h
#include "rtcp/RtcpConfig.h"
// Include
#include "IBaseClass.h"
/**
*
* Interface Name: IGetReceiverStatistics
*
* Inheritance: None
*
*
* Description: The IGetReceiverStatistics interface allows consumers to
* retrieve the performance and continuity statistics of an
* RTCP Receiver Report associated with an inbound or
* outbound RTP connection.
*
* Notes:
*
*/
interface IGetReceiverStatistics : public IBaseClass
{
// Public Methods
public:
/**
*
* Method Name: GetSSRC
*
*
* Inputs: None
*
*
* Outputs: None
*
* Returns: ssrc_t - The SSRC of the Bye Report
*
* Description: Returns the SSRC Associated with the Bye Report.
*
* Usage Notes:
*
*
*/
virtual ssrc_t GetSSRC(void)=0;
/**
*
* Method Name: GetReceiverStatistics
*
*
* Inputs: None
*
* Outputs: uint32_t *pulFractionalLoss
* Fractional Packet Loss
* uint32_t *pulCumulativeLoss
* Cumulative Packet Loss
* uint32_t *pulHighestSequenceNo
* Highest Sequence Number Received
* uint32_t *pulInterarrivalJitter
* Interarrival Packet Variance
* uint32_t *pulSRTimestamp
* Timestamp of last Sender Report received
* uint32_t *pulPacketDelay
* Delay between last Sender Report Received and sending this
* report
*
* Returns: void
*
* Description: Returns a number of receiver report statistics associated
* with an inbound or outbound RTP connection.
*
* Usage Notes:
*
*
*
*/
virtual void GetReceiverStatistics(uint32_t *pulFractionalLoss,
uint32_t *pulCumulativeLoss,
uint32_t *pulHighestSequenceNo,
uint32_t *pulInterarrivalJitter,
uint32_t *pulSRTimestamp,
uint32_t *pulPacketDelay) = 0;
};
#endif
|