blob: 2bb50496151f7f369c73ce82e6a409b4db83b1fe [file] [log] [blame]
Harald Alvestrand7061e512019-04-10 17:20:42 +02001/*
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,
23 std::unique_ptr<rtc::SSLCertChain> remote_ssl_certificates)
24 : state_(state),
25 remote_ssl_certificates_(std::move(remote_ssl_certificates)) {}
26
27DtlsTransportInformation::DtlsTransportInformation(
28 const DtlsTransportInformation& c)
29 : state_(c.state()),
30 remote_ssl_certificates_(c.remote_ssl_certificates()
31 ? c.remote_ssl_certificates()->Clone()
32 : nullptr) {}
33
34DtlsTransportInformation& DtlsTransportInformation::operator=(
35 const DtlsTransportInformation& c) {
36 state_ = c.state();
37 remote_ssl_certificates_ = c.remote_ssl_certificates()
38 ? c.remote_ssl_certificates()->Clone()
39 : nullptr;
40 return *this;
41}
42
43} // namespace webrtc