blob: faebc0972fb356c436f6aca5d7816f6794547e51 [file] [log] [blame]
Harald Alvestrand7061e512019-04-10 15:20:421/*
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
13namespace webrtc {
14
15DtlsTransportInformation::DtlsTransportInformation()
16 : state_(DtlsTransportState::kNew) {}
17
18DtlsTransportInformation::DtlsTransportInformation(DtlsTransportState state)
19 : state_(state) {}
20
21DtlsTransportInformation::DtlsTransportInformation(
22 DtlsTransportState state,
Harald Alvestrand316ab122022-02-10 08:23:4723 absl::optional<DtlsTransportTlsRole> role,
Harald Alvestrandc6c3f862019-10-29 11:19:3124 absl::optional<int> tls_version,
Harald Alvestrand114871b2019-04-11 11:37:4125 absl::optional<int> ssl_cipher_suite,
Harald Alvestrandc6c3f862019-10-29 11:19:3126 absl::optional<int> srtp_cipher_suite,
Harald Alvestrand7061e512019-04-10 15:20:4227 std::unique_ptr<rtc::SSLCertChain> remote_ssl_certificates)
28 : state_(state),
Harald Alvestrand316ab122022-02-10 08:23:4729 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
36DtlsTransportInformation::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),
Harald Alvestrandc6c3f862019-10-29 11:19:3144 tls_version_(tls_version),
Harald Alvestrand114871b2019-04-11 11:37:4145 ssl_cipher_suite_(ssl_cipher_suite),
Harald Alvestrandc6c3f862019-10-29 11:19:3146 srtp_cipher_suite_(srtp_cipher_suite),
Harald Alvestrand7061e512019-04-10 15:20:4247 remote_ssl_certificates_(std::move(remote_ssl_certificates)) {}
48
49DtlsTransportInformation::DtlsTransportInformation(
50 const DtlsTransportInformation& c)
51 : state_(c.state()),
Harald Alvestrand316ab122022-02-10 08:23:4752 role_(c.role_),
Harald Alvestrandc6c3f862019-10-29 11:19:3153 tls_version_(c.tls_version_),
Harald Alvestrand114871b2019-04-11 11:37:4154 ssl_cipher_suite_(c.ssl_cipher_suite_),
Harald Alvestrandc6c3f862019-10-29 11:19:3155 srtp_cipher_suite_(c.srtp_cipher_suite_),
Harald Alvestrand7061e512019-04-10 15:20:4256 remote_ssl_certificates_(c.remote_ssl_certificates()
57 ? c.remote_ssl_certificates()->Clone()
58 : nullptr) {}
59
60DtlsTransportInformation& DtlsTransportInformation::operator=(
61 const DtlsTransportInformation& c) {
62 state_ = c.state();
Harald Alvestrand316ab122022-02-10 08:23:4763 role_ = c.role_;
Harald Alvestrandc6c3f862019-10-29 11:19:3164 tls_version_ = c.tls_version_;
Harald Alvestrand114871b2019-04-11 11:37:4165 ssl_cipher_suite_ = c.ssl_cipher_suite_;
Harald Alvestrandc6c3f862019-10-29 11:19:3166 srtp_cipher_suite_ = c.srtp_cipher_suite_;
Harald Alvestrand7061e512019-04-10 15:20:4267 remote_ssl_certificates_ = c.remote_ssl_certificates()
68 ? c.remote_ssl_certificates()->Clone()
69 : nullptr;
70 return *this;
71}
72
73} // namespace webrtc