chromium/third_party/webrtc/pc/dtls_transport.cc

/*
 *  Copyright 2018 The WebRTC project authors. All Rights Reserved.
 *
 *  Use of this source code is governed by a BSD-style license
 *  that can be found in the LICENSE file in the root of the source
 *  tree. An additional intellectual property rights grant can be found
 *  in the file PATENTS.  All contributing project authors may
 *  be found in the AUTHORS file in the root of the source tree.
 */

#include "pc/dtls_transport.h"

#include <utility>

#include "absl/types/optional.h"
#include "api/dtls_transport_interface.h"
#include "api/make_ref_counted.h"
#include "api/sequence_checker.h"
#include "pc/ice_transport.h"
#include "rtc_base/checks.h"
#include "rtc_base/logging.h"
#include "rtc_base/ssl_stream_adapter.h"

namespace webrtc {

// Implementation of DtlsTransportInterface
DtlsTransport::DtlsTransport(
    std::unique_ptr<cricket::DtlsTransportInternal> internal)
    :{}

DtlsTransport::~DtlsTransport() {}

DtlsTransportInformation DtlsTransport::Information() {}

void DtlsTransport::RegisterObserver(DtlsTransportObserverInterface* observer) {}

void DtlsTransport::UnregisterObserver() {}

rtc::scoped_refptr<IceTransportInterface> DtlsTransport::ice_transport() {}

// Internal functions
void DtlsTransport::Clear() {}

void DtlsTransport::OnInternalDtlsState(
    cricket::DtlsTransportInternal* transport,
    DtlsTransportState state) {}

void DtlsTransport::UpdateInformation() {}

}  // namespace webrtc