blob: 535c7ebb588f5f8a37595b4904e7c6c614bbc070 [file] [log] [blame]
/*
* 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.
*/
#ifndef PC_DTLS_TRANSPORT_H_
#define PC_DTLS_TRANSPORT_H_
#include <memory>
#include "api/dtls_transport_interface.h"
#include "api/ice_transport_interface.h"
#include "api/scoped_refptr.h"
#include "p2p/base/dtls_transport.h"
#include "rtc_base/async_invoker.h"
namespace webrtc {
class IceTransportWithPointer;
// This implementation wraps a cricket::DtlsTransport, and takes
// ownership of it.
class DtlsTransport : public DtlsTransportInterface,
public sigslot::has_slots<> {
public:
// This object must be constructed on the signaling thread.
explicit DtlsTransport(
std::unique_ptr<cricket::DtlsTransportInternal> internal);
rtc::scoped_refptr<IceTransportInterface> ice_transport() override;
DtlsTransportInformation Information() override;
void RegisterObserver(DtlsTransportObserverInterface* observer) override;
void UnregisterObserver() override;
void Clear();
cricket::DtlsTransportInternal* internal() {
return internal_dtls_transport_.get();
}
const cricket::DtlsTransportInternal* internal() const {
return internal_dtls_transport_.get();
}
protected:
~DtlsTransport();
private:
void OnInternalDtlsState(cricket::DtlsTransportInternal* transport,
cricket::DtlsTransportState state);
DtlsTransportObserverInterface* observer_ = nullptr;
rtc::Thread* signaling_thread_;
std::unique_ptr<cricket::DtlsTransportInternal> internal_dtls_transport_;
rtc::scoped_refptr<IceTransportWithPointer> ice_transport_;
};
} // namespace webrtc
#endif // PC_DTLS_TRANSPORT_H_