SIP Endpoint SDK for OS X
 All Classes Functions Properties
GSStatistics.h
1 //
2 // GSStatistics.h
3 // SipEndpoint
4 //
5 // Copyright (c) 2011-2016 Genesys Telecommunications Laboratories, Inc. All rights reserved.
6 //
7 
8 #import <Foundation/Foundation.h>
9 
10 @interface GSStatistics : NSObject {
11 @private
12  int gotLocalStat;
13  float localFractionLost;
14  int localTotalLost;
15  unsigned localJitter;
16  unsigned localPktCount;
17  unsigned localOctCount;
18 
19  int gotRemoteSR;
20  unsigned remotePktCount;
21  unsigned remoteOctCount;
22 
23  int gotRemoteRR;
24  float remoteFractionLost;
25  int remoteTotalLost;
26  unsigned remoteJitter;
27  int rttMs;
28 }
29 
30 @property (nonatomic) int gotLocalStat;
31 @property (nonatomic) float localFractionLost;
32 @property (nonatomic) int localTotalLost;
33 @property (nonatomic) unsigned localJitter;
34 @property (nonatomic) unsigned localPktCount;
35 @property (nonatomic) unsigned localOctCount;
36 
37 @property (nonatomic) int gotRemoteSR;
38 @property (nonatomic) unsigned remotePktCount;
39 @property (nonatomic) unsigned remoteOctCount;
40 
41 @property (nonatomic) int gotRemoteRR;
42 @property (nonatomic) float remoteFractionLost;
43 @property (nonatomic) int remoteTotalLost;
44 @property (nonatomic) unsigned remoteJitter;
45 @property (nonatomic) int rttMs;
46 
47 @end