1 /*
2 * Copyright 2019 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 #include "api/dtls_transport_interface.h"
12
13 namespace webrtc {
14
DtlsTransportInformation()15 DtlsTransportInformation::DtlsTransportInformation()
16 : state_(DtlsTransportState::kNew) {}
17
DtlsTransportInformation(DtlsTransportState state)18 DtlsTransportInformation::DtlsTransportInformation(DtlsTransportState state)
19 : state_(state) {}
20
DtlsTransportInformation(DtlsTransportState state,absl::optional<DtlsTransportTlsRole> role,absl::optional<int> tls_version,absl::optional<int> ssl_cipher_suite,absl::optional<int> srtp_cipher_suite,std::unique_ptr<rtc::SSLCertChain> remote_ssl_certificates)21 DtlsTransportInformation::DtlsTransportInformation(
22 DtlsTransportState state,
23 absl::optional<DtlsTransportTlsRole> role,
24 absl::optional<int> tls_version,
25 absl::optional<int> ssl_cipher_suite,
26 absl::optional<int> srtp_cipher_suite,
27 std::unique_ptr<rtc::SSLCertChain> remote_ssl_certificates)
28 : state_(state),
29 role_(role),
30 tls_version_(tls_version),
31 ssl_cipher_suite_(ssl_cipher_suite),
32 srtp_cipher_suite_(srtp_cipher_suite),
33 remote_ssl_certificates_(std::move(remote_ssl_certificates)) {}
34
35 // Deprecated version
DtlsTransportInformation(DtlsTransportState state,absl::optional<int> tls_version,absl::optional<int> ssl_cipher_suite,absl::optional<int> srtp_cipher_suite,std::unique_ptr<rtc::SSLCertChain> remote_ssl_certificates)36 DtlsTransportInformation::DtlsTransportInformation(
37 DtlsTransportState state,
38 absl::optional<int> tls_version,
39 absl::optional<int> ssl_cipher_suite,
40 absl::optional<int> srtp_cipher_suite,
41 std::unique_ptr<rtc::SSLCertChain> remote_ssl_certificates)
42 : state_(state),
43 role_(absl::nullopt),
44 tls_version_(tls_version),
45 ssl_cipher_suite_(ssl_cipher_suite),
46 srtp_cipher_suite_(srtp_cipher_suite),
47 remote_ssl_certificates_(std::move(remote_ssl_certificates)) {}
48
DtlsTransportInformation(const DtlsTransportInformation & c)49 DtlsTransportInformation::DtlsTransportInformation(
50 const DtlsTransportInformation& c)
51 : state_(c.state()),
52 role_(c.role_),
53 tls_version_(c.tls_version_),
54 ssl_cipher_suite_(c.ssl_cipher_suite_),
55 srtp_cipher_suite_(c.srtp_cipher_suite_),
56 remote_ssl_certificates_(c.remote_ssl_certificates()
57 ? c.remote_ssl_certificates()->Clone()
58 : nullptr) {}
59
operator =(const DtlsTransportInformation & c)60 DtlsTransportInformation& DtlsTransportInformation::operator=(
61 const DtlsTransportInformation& c) {
62 state_ = c.state();
63 role_ = c.role_;
64 tls_version_ = c.tls_version_;
65 ssl_cipher_suite_ = c.ssl_cipher_suite_;
66 srtp_cipher_suite_ = c.srtp_cipher_suite_;
67 remote_ssl_certificates_ = c.remote_ssl_certificates()
68 ? c.remote_ssl_certificates()->Clone()
69 : nullptr;
70 return *this;
71 }
72
73 } // namespace webrtc
74