1 /*
2  *  Copyright 2018 The WebRTC Project Authors. All rights reserved.
3  *
4  *  Use of this source code is governed by a BSD-style license
5  *  that can be found in the LICENSE file in the root of the source
6  *  tree. An additional intellectual property rights grant can be found
7  *  in the file PATENTS.  All contributing project authors may
8  *  be found in the AUTHORS file in the root of the source tree.
9  */
10 
11 #ifndef PC_TRANSPORT_STATS_H_
12 #define PC_TRANSPORT_STATS_H_
13 
14 #include <string>
15 #include <vector>
16 
17 #include "p2p/base/dtls_transport_internal.h"
18 #include "p2p/base/ice_transport_internal.h"
19 #include "p2p/base/port.h"
20 #include "rtc_base/ssl_stream_adapter.h"
21 
22 namespace cricket {
23 
24 struct TransportChannelStats {
25   TransportChannelStats();
26   TransportChannelStats(const TransportChannelStats&);
27   ~TransportChannelStats();
28 
29   int component = 0;
30   int ssl_version_bytes = 0;
31   int srtp_crypto_suite = rtc::SRTP_INVALID_CRYPTO_SUITE;
32   int ssl_cipher_suite = rtc::TLS_NULL_WITH_NULL_NULL;
33   DtlsTransportState dtls_state = DTLS_TRANSPORT_NEW;
34   IceTransportStats ice_transport_stats;
35 };
36 
37 // Information about all the channels of a transport.
38 // TODO(hta): Consider if a simple vector is as good as a map.
39 typedef std::vector<TransportChannelStats> TransportChannelStatsList;
40 
41 // Information about the stats of a transport.
42 struct TransportStats {
43   std::string transport_name;
44   TransportChannelStatsList channel_stats;
45 };
46 
47 }  // namespace cricket
48 
49 #endif  // PC_TRANSPORT_STATS_H_
50